Program to accept a number from the user and print the table of that number
Answers
Answered by
2
Explanation:
Print Multiplication table of a given number. In the program, user is asked to enter the number and the program prints the multiplication table of the input number using for loop. The loops run from 1 to 10 and the input number is multiplied by the loop counter in each step to display the steps of multiplication table.
Similar questions