home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX10004.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  232 b   |  13 lines

  1. // ex10004.cpp
  2. // The width member function
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     static double values[] = { 1.23, 35.36, 653.7, 4358.224 };
  8.     for (int i = 0; i < 4; i++)    {
  9.         cout.width(10);
  10.         cout << values[i] << '\n';
  11.     }
  12. }
  13.