cout 按进制数出
Posted liubilan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cout 按进制数出相关的知识,希望对你有一定的参考价值。
头文件:
#include<iostream>
#include<iomanip> //setbase()
#include<bitset> //bitset<>
setbase只能用于设置8,10,16进制输出
1 #include<iostream> 2 #include<iomanip> 3 #include<bitset> 4 using namespace std; 5 6 int main() 7 { 8 int x = 18; 9 cout<<hex<<x<<endl; 10 cout<<oct<<x<<endl; 11 cout<<dec<<x<<endl; 12 cout<<bitset<sizeof(int)*4>(x)<<endl; 13 cout<<setbase(16)<<x<<endl; 14 15 return 0; 16 }
以上是关于cout 按进制数出的主要内容,如果未能解决你的问题,请参考以下文章