Guest User

Untitled

a guest
Jun 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. int i = 0;
  2. System.out.println("moveon: " + moveon + " random: " + rand);
  3.  
  4. do {
  5. if(i == 5)
  6. continue;
  7. System.out.println(i);
  8.  
  9. i++;
  10. } while (i < 10);
  11.  
  12. System.out.println("the end");
Add Comment
Please, Sign In to add comment