Computer Science, asked by sandu244, 9 months ago

what happen when I use continue in switch case block in java programming​..​

Answers

Answered by yashashwinks
0

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

Attachments:
Answered by Avni2348
0

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.

Similar questions