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

  1. // \EXAMPLES\EX1112.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 << " Please enter two integer values " << endl;
  9.    cin >> first_val >> sec_val;
  10.    cout.width(30);
  11.    cout << " Here is first_val "  // field padded to width 30
  12.         << setw(15) << first_val  // field padded to width 15
  13.         << " sec_val " <<         // field not padded
  14.         sec_val << endl;          // field not padded
  15. }
  16.