home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX1109.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-13  |  401 b   |  13 lines

  1. // \EXAMPLES\EX1109.CPP
  2.  
  3. #include <iostream.h>      // include I/O Stream definitions
  4. #include <iomanip.h>       // include manipulator definitions
  5.  
  6. void main() {
  7.    float f =6.6666666;
  8.    cout.precision(2); // set floating-point precision of cout
  9.    cout << "Here is f with precision 2: " << f << endl;
  10.    cout << "Here is f with precision 4: "
  11.         << setprecision(4) << f << endl;
  12. }
  13.