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

  1. // \EXAMPLES\EX1108.CPP
  2.  
  3. #include <iostream.h>
  4.  
  5. void main() {
  6.    int first_val, sec_val, third_val;
  7.    cout << "Please enter a decimal, oct, and hex value"
  8.         << endl;
  9.    cin >> first_val >> oct >> sec_val;
  10.    cin >> hex >> third_val;
  11.    cout << "Here are the decimal values "
  12.         << "of the values you entered "
  13.         << endl;
  14.    cout << first_val << " "
  15.         << sec_val << " "
  16.         << third_val
  17.         << endl;
  18. }
  19.