Write a program in qb64 to print a table of 7,8 and 9
Answers
Answered by
3
Cls
For i= 7 To 9
Print " Table of "; i
For j = 1 to 10
Print i * j
Next j
Next i
End
Answered by
1
REM " TO PRINT THE FIRST TEN MULTIPLES OF 7,8 AND 9 "
CLS
FOR I = 7 TO 9
FOR B = 1 TO 10
PRINT I; " * "; B; "="; I * B
NEXT B
NEXT I
END
Similar questions