Concept Flow - For loop with step and downTo
Initialize i = start
Check: i >= end?
No→EXIT
Yes
Execute loop body
Update: i = i - step
↩Back to Check
The loop starts at a number and counts down to an end number, decreasing by a step each time, running the loop body while the condition is true.