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