1. continue sentence

1. continue sentence

The continue statement can only be used in the body of a loop, and its general format is:

continue;  

Its semantics are: to end this loop, that is, not to execute the statements after the continue statement in the loop body, and to proceed to the judgment and execution of the next loop condition. It should be noted that this statement only ends the current loop of this layer and does not jump out of the loop.