Computer Science, asked by iscziya7374, 1 month ago

write a program to input a number n and prints it's table​

Answers

Answered by PTiger
0

Answer:

// logic in python

n = input(" Enter a number")

for i in range(1, 10):

// or in other languages : for(int i = 1; i <= 10; i++)

print(n * i)

Similar questions