#include #include int main( void ) { int num = 77; short int small = 0173; short little = 0x7b; long int big = 88000; long large = -43000L; unsigned int unum = 45000; unsigned long ubig = 330000000UL; cout << showbase; cout << "num (dec) = " << num << ", (oct) = " << oct << num << ", (hex) = " << hex << num << endl; cout << "small (oct) = " << oct << small << ", little (hex) = " << hex << little << endl; cout << "big (dec) = " << dec << big << ", large (dec) = " << large << endl; cout << "unum = " << unum << ", ubig = " << ubig << endl; cout << "small (dec) = " << small << ", little (dec) = " << little << endl; }