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

  1. // \EXAMPLES\EX1113.CPP
  2.  
  3. #include <iostream.h>      // include I/O Stream definitions
  4. #include <iomanip.h>       // include manipulator definitions
  5.  
  6. void main() {
  7.    int first_val, sec_val;
  8.    cout << "Enter two integer values " << endl;
  9.    cin >> first_val >> sec_val;
  10.    cout.fill('&'); // set the fill character to '&'
  11.    cout.width(30);
  12.    cout << " Here is first_val "  // field padded to width 30
  13.         << setfill('-')
  14.         << setw(15) << first_val  // field padded to width 15
  15.         << " sec_val " <<         // field not padded
  16.         sec_val << endl;          // field not padded
  17. }
  18.