home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 099 / IOSTREAM.ZIP / EX_M12.CPP < prev    next >
C/C++ Source or Header  |  1993-01-07  |  324b  |  20 lines

  1.  // EXAMPLE MANIP-12
  2.  
  3.  // SETTING THE STREAM STATES USING
  4.  // MANIPULATORS
  5.  
  6.  #include <header.h>
  7.  
  8.  int main()
  9.  {
  10.     cout << "Input a hex number: " ;
  11.     int number ;
  12.     cin >> hex >> number ;
  13.     cout << "The number in octal is "
  14.          << oct
  15.          << number
  16.          << endl ;
  17.  
  18.     return 0 ;
  19.  }
  20.