//PROGRAM 4-22 class DemoWhile1 { public static void main(String[] args) { int i=0; while (i<10) { System.out.println("Java"); i++; } } }