Write a program to print the tables from 5 to 10 and using Nested FOR.... NEXT loop
Answers
Answered by
1
Answer:
x=input("enter which multiplication table u want (5,6,7,8,9,10): ")
for i in range(1,11):
print(int(x)*i)
Similar questions