A program to accept any number and display its multiplication table
A program to accept any number and display its multiplication table
CLS
LET C=0
INPUT "Enter any number", N
L:LET C=C+1
PRINT C*N
IF C<10 THEN GOTO L
END
You an copy this program and paste it in your Q basic editor.

Comments
Post a Comment