First page
Back
Continue
Last page
Graphics
WHILE LOOP
while (condition)
{
// statement(s) <--- WHILE BODY
}
statements executed repetitively as long as condition is true.
Somewhere in the body, you must change something that affects the condition.