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

  1. // INTRO5.CPP -- Example from chapter 3 "Introduction to C++
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.   int num = 3, denom = 4;
  8.   float value;
  9.   value = num / denom;
  10.   cout << value;
  11.  
  12.   return 0;
  13. }
  14.