03-16-2023, 12:55 AM
Do you mean this?
Code: (Select All)
FOR x = 1 TO 10 STEP 2
FOR y = 1 TO 10
IF y <> x THEN PRINT y;
NEXT
PRINT
NEXT