Simple Arithmetic Operators Example Program In C++

Read About C++ Operators

Arithmetic Operator

They are five arithmetic operators in C++.

  • +         Addition or unary plus
  • -          Subtraction or unary minus
  • *          Multiplication
  • /          Division
  • %        Modulo operator

These operators can operate on any arithmetic operations in C++.

Example Program Of Arithmetic Operators

// Header Files
#include<iostream>

#include<conio.h>

//Main Function

using namespace std;

int main ()
{
  // Variable Declaration
  int a = 200;
  int b = 26;
  int c = 50;
  int d = 40;
  int result;
 
  cout << "Simple Arithmetic Operators Example Program \n";
 
  result = a - b; // subtraction  ( Subtraction or unary minus Arithmetic Operator)
  cout <<"\na - b = "<<result;
 
  result = b * c; // multiplication ( Multiplication Arithmetic Operator)
  cout <<"\nb * c = "<< result;
 
  result = a / c; // division ( Division Arithmetic Operator)
  cout <<"\na / c = "<< result; 
 
  result = a + b * c; // precedence ( Addition or unary plus Arithmetic Operator)
  cout <<"\na + b * c = "<< result;
 
  cout <<"\na * b + c * d = "<< a * b + c * d; // Mixed
  return 0;
}

Sample Output

Simple Arithmetic Operators Example Program

a - b = 174
b * c = 1300
a / c = 4
a + b * c = 1500
a * b + c * d = 7200
--------------------------------
Process exited after 1.648 seconds with return value 0
Press any key to continue . . .