Advertisement
wingman007

Java - do-while loop

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