home *** CD-ROM | disk | FTP | other *** search
- // \EXAMPLES\EX1108.CPP
-
- #include <iostream.h>
-
- void main() {
- int first_val, sec_val, third_val;
- cout << "Please enter a decimal, oct, and hex value"
- << endl;
- cin >> first_val >> oct >> sec_val;
- cin >> hex >> third_val;
- cout << "Here are the decimal values "
- << "of the values you entered "
- << endl;
- cout << first_val << " "
- << sec_val << " "
- << third_val
- << endl;
- }
-