Simple Arithmetic Operators Example Program In C++
On this page (6sections)
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 . . .
How It Works
This C++ program demonstrates Simple Arithmetic Operators. It first prepares the data it needs, then performs the core operation step by step, and finally prints the output shown in the Sample Output above.
- Declare the variables that hold the program’s data.
- Print the final result to the console so you can compare it with the sample output.
Try changing the input values and re-running the program to see how the output changes — this is the fastest way to understand how the logic behaves.
Related Pages
Continue learning with these related tutorials and programs:
- C++ Tutorials — Browse all C++ Tutorials.
- Simple Relational Operator Example Program In C++ — More in c operator example programs.
- Simple Logical Operators Example Program In C++ — More in c operator example programs.
- Simple Assignment Operators Example Program In C++ — More in c operator example programs.
Frequently Asked Questions
What does this C++ program do?
It is a C++ example program that demonstrates Simple Arithmetic Operators, including the complete source code and the expected sample output.
How do I compile and run this C++ program?
Save the code in a `.cpp` file, compile it with `g++ filename.cpp -o program`, then run it with `./program` (or `program.exe` on Windows).
What concepts does this example use?
This example uses core C++ syntax, illustrating a common pattern in C++ programming.