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

  1. // ex10006.cpp
  2. // The fill 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.fill('*');
  11.         cout << values[i] << '\n';
  12.     }
  13. }
  14.