把x用八進位,十進位、十六進位的形式列印,把y用布爾值的形式列印:int x = 10;cout << oct << x << endl; //show octalcout << dec << x << endl; //show decimalcout << hex << x << endl; //... ...
把x用八進位,十進位、十六進位的形式列印,把y用布爾值的形式列印:
int x = 10; cout << oct << x << endl; //show octal cout << dec << x << endl; //show decimal cout << hex << x << endl; //show hexadecimal int y = 1; cout << boolapha << y << endl; //show bool