home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 4.ddi / SAMPLES / IOSTUTOR / EXIOS104.CP$ / EXIOS104
Encoding:
Text File  |  1991-11-25  |  274 b   |  15 lines

  1. // exios104.cpp
  2. // The fill member function
  3. #include <iostream.h>
  4.  
  5. void main()
  6. {
  7.    double values[] = { 1.23, 35.36, 653.7, 4358.24 };
  8.    for( int i = 0; i < 4; i++ )
  9.    {
  10.       cout.width( 10 );
  11.       cout.fill( '*' );
  12.       cout << values[i] << endl;
  13.    }
  14. }
  15.