Advertisements
Advertisements
Question
Write a short program to print the following series:
(a) 1 4 7 10...... 40
Solution
# include
using namespace std;
int main ()
{
cout << “\n PRINT SERIES” ;
for (int i = 1; i< 40; i = i + 3)
cout << i << “1+”;
cin.get();
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 a C++ program to print the multiplication table of a given number.
Write the syntax and purpose of the switch statement.