Hello friends! Welcome to my blog
Today we discuss How to use switch case conditional statement in c++ and how to program switch case in c++ programming examples
What is switch Case?
Switch case is a multi-way conditional statement. It Works like as if else if nested conditional statement.But the Advantage of using Switch case over if else if nested conditional statement Management of switch case is easy
See Switch case example below that how work switch statement:
Switch case in program c++ example
using namespace std;
int main()
{
char op;
long a,b,r;cout<<“Enter two number to calculate: “<
cin>>b;
cout<<“Please chooese a operator +, -, *, /”<
switch(op)
{
case ‘+’:
r=a+b;
cout< break;
case ‘-‘:
r=a-b;
cout< break;
case ‘*’:
r=a*b;
cout< break;
case ‘/’:
r=a/b;
cout< break;
default:
cout<<“Enter valid operator”<
return 0;
}
Output: Enter two number to calculate:
10
4
Please chooese a operator +, -, *, /
+
10 + 4 =14
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this c++ programming code or input & output please comment below
If you have another question about c++ programming send an email by contacting us form is given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut
Please any query email programmingshortcut@gmail.com
Please comment your experience on this post,
Thank You!