Computer Science, asked by Aayush0005, 6 months ago

write a program in qbasic to print table of 120 in a format like 120*1=120 till120*10=1200 will mark answer as brainliest.need fast its urgent​

Answers

Answered by avitaylor101
0

Explanation:

Here's how you can print table of any no. -

CLSINPUT "Enter any number"; nFOR i = 1 TO 10    a = n * i    PRINT n; "x"; i; "="; aNEXT iEND

Now as per your asked question, use this program to print the table of 120:

CLSLet n= 120FOR i = 1 TO 10    a = n * i    PRINT n; "x"; i; "="; aNEXT iEND

Hope this helps. :)

Answered by Anonymous
0

Answer:

refer to the attachment of

Attachments:
Similar questions