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

  1.  // EXAMPLE OUTPUT-72
  2.  
  3.  // HOW TO EMULATE printf AND SET
  4.  // THE PRECISION
  5.  
  6.  #include <header.h>
  7.  
  8.  int main()
  9.  {
  10.     cout.setf(ios::showpoint) ;
  11.     cout.precision(1) ;
  12.     cout << 1.2300 << '\n' ;
  13.     cout << 4.00 << '\n' ;
  14.     cout << 5.678E2 << '\n' ;
  15.     cout << 0.0 << '\n' ;
  16.  
  17.     return 0 ;
  18.  }
  19.