write a program in Q Basic to print first 10 multiples of 6 ,7 and 8
Answers
Answered by
1
Well, you just asked for the multiples of nine but didn't mention any limit…. So here you go … [code]CLS LET A = 0 DO I = I + 1 PRINT 9 ; " X " ; " = " ; (9*I) LOOP END [/code ...
Similar questions