addition operator in cout : Int « Data Type « C++






addition operator in cout

addition operator in cout
 

#include <iostream>
using namespace std;
int main(void)
{
   int total, added, dropped;
   cout << "Enter total: ";
   cin >> total;
   cout << "Enter added: ";
   cin >> added;
   total = total + added;
   cout << "Enter dropped ";
   cin >> dropped;
   total -= dropped;
   cout << "Number: " << total << endl;
   return 0;
}

           
         
  








Related examples in the same category

1.cout: output INT_MIN, INT_MAX and UINTcout: output INT_MIN, INT_MAX and UINT
2.Using cin Object to Read Integer Values from Keyboard
3.Define, input and output int valueDefine, input and output int value
4.Computes the lowest common denominator.Computes the lowest common denominator.
5.Inputting int Values for Multiple VariablesInputting int Values for Multiple Variables
6.Divided by intDivided by int
7.Int value operationsInt value operations
8.convert string (char) to int
9.Integer pointer
10.Using atoi: convert string to int