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

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)} {}

简书上一个网友说得挺好的

相关标签: windows API C++