do-while |
should be executed at least once |
after the loop body has been executed |
foot-controlled loop |
is executed at least once |
Lesson 47 |
while |
might never be executed |
before the loop body will be executed |
head-controlled loop |
might never be executed |
Lesson 52 |
for |
iterate through an array if an iteration counter is needed |
before the loop body will be executed |
head-controlled loop |
might never be executed |
Lesson 207 |
for-each |
iterate through an array if no iteration counter is needed |
before the loop body will be executed |
head-controlled loop |
might never be executed |
Lesson 210 |