4 lines
97 B
Text
4 lines
97 B
Text
FOR i = 1 to 10
|
|
IF MOD(i, 2) = 0 THEN PRINT i; " is odd" ELSE PRINT i; " is even"
|
|
NEXT i
|
|
END
|