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"); }