Concept Flow - Continue statement
Start loop iteration
Check condition
Yes
Check if continue condition
Yes|No
Skip rest of loop
Next iteration or exit
The loop checks a condition each iteration. If the continue condition is true, it skips the rest of the loop body and moves to the next iteration.