Which summary correctly distinguishes the three loop types?
Use for for structured known counts, while for condition-driven repetition, and do-while when the body must run at least once.
for
while
do-while
A do-while checks its condition before the first body execution.
All three have identical syntax and always execute the same number of times.
Only while can use counters, while for is restricted to unknown iteration counts.