Concept Flow - Loop initialization, condition, update
Initialize loop variable
Check loop condition
No→Exit loop
Yes
Execute loop body
Update loop variable
↩Back to Check loop condition
The loop starts by setting a variable, then checks a condition. If true, it runs the loop body, updates the variable, and repeats. If false, it stops.