Computer Science, asked by Anonymous, 5 months ago

Write a QBASIC program to display table of a number entered by the user using DO WHILE LOOP.

Answers

Answered by Ananya307747
3

Answer:

QBASIC program full form is quick beginner all-purpose symbolic instruction code.

here is your answer

Answered by vishnukapuganty
3

Answer:

CLS

INPUT "ENTER ANY NUMBER"; n

x=1

PRINT n; "*" x; "=" ; n*x

x = x+1

DO WHILE x < = 10

LOOP

Similar questions