First page Back Continue Last page Graphics
While loop
Test condition and a body.
If the test condition is true, the body is executed.
If the test condition is false, the body is skipped.
If you forget to change a loop control variable in the test condition, the loop will go infinite.
If you change the loop control variable in the test condition incorrectly, the loop will go infinite.