Computer Science, asked by momkekri, 8 months ago

write a program to input any number from user and print its table​

Answers

Answered by sairithwik19
3

Answer:

* C Program to Find & Display Multiplication table.

int number, i = 1;

printf(" Enter the Number:");

scanf("%d", &number);

printf("Multiplication table of %d:\n ", number);

printf("--------------------------\n");

while (i <= 10)

printf(" %d x %d = %d \n ", number, i, number * i);

Answered by papaji33
0

Answer:

i can tell it in python

x=int(input("inter a no" ))

print(x)

Similar questions