欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c++ 二进制转换代码实现

程序员文章站 2022-06-17 19:14:41
c++ 二进制转换代码实现 #include "stdafx.h" #include #include us...

c++ 二进制转换代码实现

#include "stdafx.h"
#include<iostream>
#include<bitset>
using namespace std;
 
int main()
{
	int value = 255;
	char cvalue[10];
 
	_itoa_s(value, cvalue, 16);
	cout << cvalue << endl;
 
	cout << bitset<10>(value) << endl;
    
	system("pause");
 
}