home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / TC-300 / EXAMPLES / INTRO5.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-17  |  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.