Crenox

WhileLoopSkip12 Program

Feb 11th, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class WhileLoopSkip12
  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. System.out.println(i);
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment