home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / INTRO1.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  402b  |  19 lines

  1. //INTRO1.CPP--Example from Chapter 3, "An Introduction to C++" 
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.    int   bushels;
  8.    float dollars, rate;
  9.     cout << "How many dollars did you get? $";
  10.     cin >> dollars;
  11.     cout << "For how many bushels? ";
  12.     cin >> bushels;
  13.     rate = dollars / bushels;
  14.     cout.precision(2);
  15.     cout << "You have received $" << rate << " for each bushel.\n";
  16.  
  17.    return 0;
  18. }
  19.