Thursday 31 October 2019

Wap to print natural no. from 1 to 5

DECLARE SUB SERIES()
CLS
CALL SERIES()
END

SUB SERIES()
FOR I = 1 TO 5
PRINT I
NEXT I
END SUB

No comments:

Post a Comment