Algorithmique (9/14) - Boucle Pour - Structures itératives

The For loop is an iterative (or repetitive) structure that allows you to repeat a process in an algorithm (or computer program) several times just like the While loop, but it is easier to handle because it allows you to include the three basic instructions of the latter in a single line, namely: initialization of the counter, definition of the condition and specification of the increment or decrement step. In this lesson we will see how to declare the For loop and how to set up the nesting of two loops.