Computer Science, asked by vikkysir2vikky, 1 year ago

write a program in Q Basic to print first 10 multiples of 6 ,7 and 8

Answers

Answered by sayyamj123p83wbo
3
CLS
LET A = 0
DO
I = I +1
PRINT 9 ; " X " ; " = " ; (9 * I)
LOOP
END
Similar questions