Loop Control System

Learn how to control loops through special statements.

We'll cover the following...

All programming languages have loop control statements that can change the flow of execution in a program from the normal sequence.

Continue

The continue statement returns the control to the beginning of the loop or, in other words, the flow control continues with the next iteration of the loop. In the following example, the normal sequence of flow control should be: for each number in the list, check if it is less than ...