Advertisements
Advertisements
Question
Write a C++ program to print the multiplication table of a given number.
Solution
# include
using namespace std;
int main ()
{
int num;
cout << “Enter Number to find its multiplication table”; cin >> num;
for (int a = 1; a < = 10; a++)
{
cout << num << “*” << a << “=” << num*a << endl;
}
return( );
}
APPEARS IN
RELATED QUESTIONS
The multi-way branch statement ______
What is a selection statement? write its types?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2000?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2003?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2010?
What is the output of the following code?
for (int i=2; i<=10 ; i+=2)
cout << i;
Convert the following if-else to a single conditional statement:
if (x >= 10)
a = m + 5;
else
a = m;
Rewrite the following code so that it is functional:
v = 5;
do;
{
total += v;
cout << total;
while v <= 10
Write the syntax and purpose of the switch statement.
Write a short program to print the following series:
(a) 1 4 7 10...... 40