Programming Shortcut

Write, Run and execute Your programs with simple and esay way by Programming Shortcut

Monday, February 4, 2019

Switch case in program cpp example

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


#include
using namespace std;
int main()
{
char op;
long  a,b,r;

cout<<"Enter two number to calculate: "< cin>> a;
 cin>>b;
cout<<"Please chooese a operator +, -, *, /"< cin>>op>>endl;
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!

      

About Programming Shortcut

This is a programming learning website that can help you learn and when your write your programming code. And all programming code is compiled run programming code in the following programming language C, c++, Java, php and Javascript Languages. find your programming read, understand the programming then copy and past and run your program and save your golden time to typing the program becuse you learn more in leas time. All Programming is codeing is ease to understand the programming