Accept a number from user and display its table upto 20 terms
Answers
Answered by
0
Answer:
30 40 50 60 70 8090 and 100
Answered by
1
Answer:
hello,
its using python
Explanation:
# program to accept a number from user and display its table
n=int(input("enter the number"))
for i in range(1,21):
print(n,"X",i,"=",n*i)
___________________________
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions
English,
1 month ago
Computer Science,
1 month ago
Art,
1 month ago
Science,
3 months ago
Hindi,
9 months ago