Advertisements
Advertisements
Question
Write the syntax and purpose of the switch statement.
Solution
The syntax of the switch statement is:
switch(expression)
{
case constant 1:
statement(s);
break;
case constant 2:
statement(s);
break;
.
.
.
.
default:
statement(s);
}
Purpose of switch statement:
The switch statement is a multi-way branch statement. It provides an easy way to dispatch execution to different parts of code based on the value of the expression.
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 a short program to print the following series:
(a) 1 4 7 10...... 40