Int value operations : Int « Data Type « C++






Int value operations

Int value operations
 



#include <iostream>
#include <string>
using namespace std;
int main(void)
{
   int total, added, dropped, tuition;
   cout << "Enter total: ";
   cin >> total;
   cout << "Enter add: ";
   cin >> added;
   total = total + added;
   cout << "Enter dropped? ";
   cin >> dropped;
   total -= dropped;
   cout << "Total number: " << total << endl;
   tuition = (total + dropped) * 72;
   cout << "Total tuition: $" << tuition << endl;
   cout << "Average tuition: $" 
        << (float) tuition / total;
   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.addition operator in coutaddition operator in cout
4.Define, input and output int valueDefine, input and output int value
5.Computes the lowest common denominator.Computes the lowest common denominator.
6.Inputting int Values for Multiple VariablesInputting int Values for Multiple Variables
7.Divided by intDivided by int
8.convert string (char) to int
9.Integer pointer
10.Using atoi: convert string to int