write a Q Basic program to print the table of 3
Answers
Answered by
2
a=1
b=a
for i in range (10)
print a*b
b=a
for i in range (10)
print a*b
Similar questions