127k views
5 votes
Write a program to print the multiplication table of 9 using the FOR... NEXT loop ​

User Rumel
by
7.1k points

1 Answer

3 votes

Answer:

FOR i = 1 TO 10

result = 9 * i

PRINT "9 * " + i + " = " + result

NEXT

User Laura
by
7.6k points