what happen when I use continue in switch case block in java programming..
Answers
Answer:
The continue statement skips the current iteration of a loop (for, while, and do...while loop).
When continue statement is executed, control of the program jumps to the end of the loop. Then, the test expression that controls the loop is evaluated. In case of for loop, the update statement is executed before the test expression is evaluated.
It is almost always used with decision making statements (if...else Statement).
It's syntax is:
continue;
Explanation:
hope it helps you ....
please mark as brainliest
Explanation:
The continue statement skips the current iteration of a loop ( for , while , and do... while loop). When continue statement is executed, control of the program jumps to the end of the loop. In case of for loop, the update statement is executed before the test expression is evaluated.