C++ Arithmetic Operators

This C++ Program demonstrates the use of arithmetic operators. Here numbers are given as input and the result of operation is output on the screen.

Here is source code of the C++ program which demonstrates the use of arithmetic operators. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.

  1. /*
  2.  * C++ program to demonstrate use of arithmetic operators
  3.  */
  4. #include<iostream>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     int Num1, Num2;
  10.  
  11.     cout << "Enter two numbers to be operated with arithmetic operators: ";
  12.     cin >> Num1 >> Num2;
  13.  
  14.     cout << endl;
  15.     cout << "Num1 + Num2 = " << Num1 + Num2 << endl;
  16.     cout << "Num1 * Num2 = " << Num1 * Num2 << endl;
  17.     cout << "Num1 - Num2 = " << Num1 - Num2 << endl;
  18.     if (Num2 != 0)
  19.         cout << "Num1 / Num2 = " << Num1 / Num2 << endl;
  20.     else
  21.         cout << "Num2 is not non-zero. Division is not defined. " << endl;
  22.  
  23.     return 0;
  24. }

$ g++ main.cpp
$ ./a.out
Enter two numbers to be operated with arithmetic operators: 4 6
 
Num1 + Num2 = 10
Num1 * Num2 = 24
Num1 - Num2 = -2
Num1 / Num2 = 0
 
$ ./a.out
Enter two numbers to be operated with arithmetic operators: 5 0
 
Num1 + Num2 = 5
Num1 * Num2 = 0
Num1 - Num2 = 5
Num2 is not non-zero. Division is not defined.

Sanfoundry Global Education & Learning Series – 1000 C++ Programs.

advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.