The If statement also requires braces, but if there is only one statement in the curly braces, you can omit the curly braces. It's just a convenience in writing.
C, Java,matlab language, the general form of the continue statement is "continue;"
Its effect is to end this cycle. This is the statement that jumps out of the loop body and continues to solve the loop condition for the while loop. The third part of the For statement header is then solved for the for Loop program flow.
The difference between the continue statement and the break statement is:
The Continue statement ends this loop only , without terminating the execution of the entire loop. The break statement ends the entire loop and no longer determines whether the condition of the execution loop is true.
This article is from the "Nothing-skywalker" blog, please be sure to keep this source http://tianxingzhe.blog.51cto.com/3390077/1675588
If continue statement