C++输出二进制数
程序员文章站
2022-01-21 19:02:26
...
示例
#include<windows.h>
#include<sstream>
#include<atlstr.h>
#include<bitset>
using namespace std;
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow)
{
DWORD dword = GetLogicalDrives();
stringstream str;
str << bitset<32>(dword);
string str1;
str >> str1;
CString out = str1.c_str();
MessageBox(NULL, out, L"输出", MB_OK);
return 0;
}
使用 bitset
可以很方便的输出二进制数。要包含头文件 bitset
#include<bitset>
语法
int a;
cout << bitset<32>(a);
尖括号里的数字为二进制数的位数
bitset
的定义如下
constexpr bitset(unsigned long long _Val) noexcept : _Array{static_cast<_Ty>(_Need_mask ? _Val & _Mask : _Val)} {}
上一篇: day4_JAVA字符串
下一篇: 牛客网刷题-数组中只出现一次的两个数字