Computer Science, asked by nagraniswarna01, 4 months ago

write a qbasic program to print table of 19 in reverse order​

Answers

Answered by atrs7391
1

Answer:

CLS

N = 19

A = 10

PRINT "THE TABLE OF 19 IN REVERSE ORDER: "

WHILE A>0

P = N*A

PRINT C

A = A-1

WEND

END

Hope I am able to help you

Similar questions