Q:

Write a program in C++ that takes a number as input and prints its multiplication table upto 10

0

Write a program in C++ that takes a number as input and prints its multiplication table upto 10

Sample Output:

 Print the multiplication table of a number upto 10:                   
--------------------------------------------------------               
 Input a number: 5                                                     
5 x 1 = 5                                                              
5 x 2 = 10                                                             
5 x 3 = 15                                                             
5 x 4 = 20                                                             
5 x 5 = 25                                                             
5 x 6 = 30                                                             
5 x 7 = 35                                                             
5 x 8 = 40                                                             
5 x 9 = 45                                                             
5 x 10 = 50

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
using namespace std;
 
int main()
{
int a,i=0;
    cout << "\n\n Print the multiplication table of a number upto 10:\n";
	cout << "--------------------------------------------------------\n";
	cout << " Input a number: ";
	cin>> a;
	for (i=1;i<=10;i++)
	{
	cout << a<<" x "<< i << " = "<<a*i<<"\n" ;
	}
	
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now