Computer Science, asked by akhil200534, 3 months ago

Accept a number from user and display its table upto 20 terms​

Answers

Answered by seemadineshverma234
0

Answer:

30 40 50 60 70 8090 and 100

Answered by Anonymous
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