wap to accept a number from the user and print the table of that number Use while loop
Answers
Answered by
7
Answer:
hello,
its using python
Explanation:
#program to accept a number from the user and print the multiplication table of that number.
n=int(input("enter the number"))
i=1
while i<=10:
s=n*i
print(n,"X",i,"=",s)
i=i+1
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions