Concept Flow - While loops
Initialize variable
Check condition
|Yes
Execute loop body
Update variable
Back to Check
Exit loop
↩Back to Check
The loop starts by initializing a variable, then checks a condition. If true, it runs the loop body, updates the variable, and repeats. If false, it exits.