Advertisement
wingman007

Java - while loop

Nov 14th, 2013
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.11 KB | None | 0 0
  1. public static void main(String[] a){
  2.     int i = 1;
  3.     while(i < 11)
  4.     {
  5.         System.out.println(i);
  6.         i = i + 1;
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement