5.- ITERATION FOR
The FOR is simply an abbreviated way to
express a WHILE, let's see its syntax:
6.- THE BREAK SENTENCE
The BREAK, already briefly described
with the SWITCH, also serves to
terminate loops produced by WHILE,
DO-WHILE and FOR before the normal
termination condition is met. In the
following EXAMPLE we see its use to
terminate an indeterminate WHILE.