1. 程式人生 > >C++中輸出進位制以及布林型別

C++中輸出進位制以及布林型別

int x;
cin>>x;
cout<<oct<<x<<endl;//八進位制
cout<<dec<<x<<endl;//十進位制
cout<<hex<<x<<endl;//十六進位制
bool y=false;
cout<<boolalpha<<y<<endl;//以布林形式輸出