Concept Flow - Continue statement
Start loop iteration
Check condition
Yes
Check continue condition
Skip rest
Next iteration
No
Exit loop
Each loop iteration checks if it should skip the rest using continue; if yes, it jumps to the next iteration immediately.