#include using namespace std; int main() { cout << "8進位數101的字元是" << '\101' << "。\n" ; cout << "16進位數0061的字元是" << '\x69' << "。\n" ; return 0; }