1: public class WhileLoop 2: { 3: public static void main(String[] args) 4: { 5: int i = 1; 6: while(i <= 10) 7: { 8: System.out.print(i + " "); 9: i++; 10: } 11: System.out.print("\n"); 12: } 13: }