Iteration: While Loop
Introduction to Iteration
Two Forms:
while (booleanexpr) { action }
for (initexpr ; testexpr ; modexpr) { action }
The "while" loop
General Structure (
ITEM mnemonic
)
Examples of using loops:
Averaging Numbers (
average.cpp
)
Computing a Factorial (
fact.cpp
)