for | step flow



for step flow
Smart pascal source code
var i, j: Integer; for i := 1 to 11 step 2 do begin WriteLn(i); if i = 3 then continue; for j := i * 30 downto i * 10 step 10 do begin if (j mod 50) = 0 then continue; WriteLn(j); if j <= i * 20 then Break; end; if i = 9 then Break; end; {<<< RESULT - CONSOLE LOG >>> ----------------------------- 1 30 20 3 5 140 130 120 110 90 7 210 190 180 170 160 140 9 270 260 240 230 220 210 190 180 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}