home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / source / chapter01 / expensive_calculator.cpp next >
C/C++ Source or Header  |  2003-09-16  |  497b  |  23 lines

  1. // Expensive Calculator
  2. // Demonstrates built-in arithmetic operators
  3.  
  4. #include <iostream>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     cout << "7 + 3 = " << 7 + 3 << endl;
  10.     cout << "7 - 3 = " << 7 - 3 << endl;
  11.     cout << "7 * 3 = " << 7 * 3 << endl;
  12.  
  13.     cout << "7 / 3 = " << 7 / 3 << endl;
  14.     cout << "7.0 / 3.0 = " << 7.0 / 3.0 << endl;
  15.  
  16.     cout << "7 % 3 = " << 7 % 3 << endl;
  17.  
  18.     cout << "7 + 3 * 5 = " << 7 + 3 * 5 << endl;
  19.     cout << "(7 + 3) * 5 = " << (7 + 3) * 5 << endl;
  20.  
  21.     return 0;
  22. }
  23.