Write a program to print the multiplication table of 5 in QBASIC
Answers
Answered by
5
Answer:
write Question properly
Explanation:
please mark as brianlist answer
Answered by
10
To print the multiplication of any number up to the tenth term:
CLS
INPUT "Enter any number"; n
FOR i = 1 TO 10
a = n * i
PRINT n; "x"; i; "="; a
NEXT i
END
*Here, since we need the multiplication table of 5, the number input (n) will be 5.
Hope this helps! Please mark this as the brainliest answer if it does! :)
Similar questions