In this example, I’ll show you How to make a simple calculator in C++.
To make a simple calculator in C++ programming which performs basic four mathematical operations (addition, subtraction, multiplicatin, and division) depending on the user’s choice, use the switch case to identify the input operator to perform required calculation then display the result as shown here in the following program.
C++ Programming Code to Make Simple Calculator
Following is a simple C++ program which is a menu-driven program based on simple calculation like addition, subtraction, multiplication and division according to user’s choice:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #include <iostream> using namespace std; int main(){ float a, b, res; char choice, ch; do { cout<<"1.Addition\n"; cout<<"2.Subtraction\n"; cout<<"3.Multiplication\n"; cout<<"4.Division\n"; cout<<"5.Exit\n\n"; cout<<"Enter Your Choice : "; cin>>choice; switch(choice) { case '1' : cout<<"Enter two number : "; cin>>a>>b; res=a+b; cout<<"Result = "<<res; break; case '2' : cout<<"Enter two number : "; cin>>a>>b; res=a-b; cout<<"Result = "<<res; break; case '3' : cout<<"Enter two number : "; cin>>a>>b; res=a*b; cout<<"Result = "<<res; break; case '4' : cout<<"Enter two number : "; cin>>a>>b; res=a/b; cout<<"Result = "<<res; break; case '5' : exit(0); break; default : cout<<"Wrong Choice..!!"; break; } cout<<"\n------------------------------------\n"; }while(choice!=5 && choice!=getchar()); } |
Nice one.