In this tutorial we will learn how can we create a calculator using C++. This calculator is able to calculate Plus, Minus, Subtraction and Division.
This is really useful to practice C++ program.
The best part of this program is you will learn about Object Oriented Programming Concept in C++ and the use of switch statement in C++. In this program we use constructor, class and switch statement to make the program able to calculate user defined operator.
C++ Program To Create A Multifunctional Calculator
#include
class calc
{
public:
calc()
{
char o;
int a,b;
cout<<"Enter first number"<>a;
cout<<"Enter Operator"<>o;
cout<<"Enter second number"<>b;
switch(o)
{
case '+':
cout<
For Turbo C++
#include
#include
class calc
{
public:
calc()
{
char o;
int a,b;
cout<<"Enter first number"<>a;
cout<<"Enter Operator"<>o;
cout<<"Enter second number"<>b;
switch(o)
{
case '+':
cout<
Output
Enter First Number
10
Enter Operator
+
Enter Second Number
20
10 + 20 = 30