Concept Flow - While loop
Initialize variable
Check condition?
No→EXIT
Yes
Execute loop body
Update variable
↩Back to Check
The while loop starts by checking a condition. If true, it runs the loop body, updates variables, then checks again. It stops when the condition is false.