Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class WhileLoopSkip12Break50
- {
- public static void main(String[] args)
- {
- int i = 0;
- while (i <= 98)
- {
- i+=2;
- if (i == 12)
- {
- continue;
- }
- if (i == 52)
- {
- break;
- }
- System.out.println(i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment