December 30, 2016

Qbasic program to print odd numbers between 1 to 25

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

1 comment:

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