December 30, 2016

Qbasic program to print even numbers between 1 to 25

CLS
FOR I = 2 TO 25 STEP 2
PRINT I;
NEXT I
END

2 comments:

Note: Only a member of this blog may post a comment.