Next: Review questions
Up: Further Structured Design
Previous: Other forms of Repetition
while
loop.
This loop repeats the body of a loop while some condition remains true.
If the condition is initially false then the loop body is never
executed.for
repetition control structure repeats the body of the loop
a fixed number of times, possibly while some control variable sequences
through a specified set of values.