Thursday 31 October 2019

Wap to print first ten numbers

DECLARE SUB SERIES()
CLS
CALL SERIES
END

SUB SERIES()
FOR I = 1 TO 10 STEP 2
PRINT I
NEXT I
END SUB

No comments:

Post a Comment