home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 099 / IOSTREAM.ZIP / EX_O70.CPP < prev    next >
C/C++ Source or Header  |  1993-01-07  |  260b  |  15 lines

  1.  // EXAMPLE OUTPUT-70
  2.  
  3.  // DISPLAY SOME FLOATING POINTS
  4.  // CONSTANTS WITHOUT ANY FORMATTING
  5.  
  6.  #include <header.h>
  7.  
  8.  int main()
  9.  {
  10.     cout << 1.2300 << '\n' ;
  11.     cout << 4.00 << '\n' ;
  12.     cout << 5.678E2 << '\n' ;
  13.     cout << 0.0 << '\n' ;
  14.  }
  15.