Wednesday, October 16, 2019

114. Qbasic program to display numbers 2, 4, 6, ............20.

114. Write a sub program to display numbers 2, 4, 6, ............20.

DECLARE SUB SERIES ( )
CLS
CALL SERIES
END
SUB SERIES
FOR I = 2 TO 20
PRINT I
NEXT I
END SUB

No comments:

Post a Comment