c++ 如何输出8进制和十六进制和二进制

头文件iostream中提供控制符:

dec:指示cout以十进制输出。 hex:指示cout以十六进制输出。 oct:指示cout以八进制输出。

示例:

/*by kzl*/
#include
#include
using namespace std;


int main(){
    int n_max = 42;
    cout<

结果:



输出二进制有些麻烦,因为并没有这样的控制符。不过可以使用bitset把要输出的数变成二进制存储输出。

示例:

/*by kzl*/
#include
#include
using namespace std;
const int num = 31;//num表示bitset声明的位数,即有多少位输出。
int main(){
    int n_max = 42;
    cout<<(bitset)n_max<
结果:



你可能感兴趣的:(c++PrimerPlus)