Crenox

WhileLoopSkip12Break50 Program

Feb 11th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class WhileLoopSkip12Break50
  2. {
  3. public static void main(String[] args)
  4. {
  5. int i = 0;
  6. while (i <= 98)
  7. {
  8. i+=2;
  9. if (i == 12)
  10. {
  11. continue;
  12. }
  13. if (i == 52)
  14. {
  15. break;
  16. }
  17. System.out.println(i);
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment