First page
Back
Continue
Last page
Graphics
Example
i = 0;
while ( i < 10 )
{
cout << “i = “ << i << endl;
i = i + 4;
}
i = 0
i = 4
i = 8
If the condition is false, body never runs.