home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / EXAMPLES.ZIP / INTRO3.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  278 b   |  16 lines

  1. //INTRO3.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6.  
  7. {
  8.     int pounds;
  9.     int total, bags;
  10.     pounds = 50;
  11.     bags = 1000;
  12.     total = bags * pounds;
  13.     cout << "There are " << total << "lbs. in 1000 bags of beans\n";
  14.     return 0;
  15. }
  16.