home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX01006.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  186 b   |  11 lines

  1. // ex01006.cpp
  2. // Formatting numerical data
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     int amount = 123;
  8.     cout << dec << amount << ' ' << oct << amount << ' '
  9.          << hex << amount;
  10. }
  11.