The program to find and display the multiplication table of a given number is discussed here. Given a number, the multiplication table of that number is displayed as output until the end value is specified.
Sample input and output format:
Input format:
Sample Input:
1
5
Sample Output:
1 * 1 = 1
1 * 2 = 2
1 * 3 = 3
1 * 4 = 4
1 * 5 = 5
@@coding::1@@