Write a QBASIC program to print a multiplication table of any number entered by the user. pls fast
Answers
Answered by
0
REM Multiplication Table
DIM num as INTEGER
CLS
INPUT num
FOR I=0 TO 10
PRINT num; "*"; I; "="; num*I
NEXT I
END
Similar questions