Java Continue Statement
The continue statement is a control statement that is used to skip the following statement in the body of the loop and continue with the next iteration of the loop. Types of continue statement: Unlabeled continue statement: is used to skip the following statement in the body of the loop when a specific condition … Read more