在 C++ 中将十进制数直接输出为二进制表示

在 C++ 中,我们可以利用下面的方法,将一个十进制数直接转换为二进制数并输出。

  1. bitset<size_t len> 类型可以代表任意长度的二进制集合。
  2. bitset<size_t len>() 构造函数可以将一个十进制数转换为其二进制形式。
  3. stream << bitset<size_t len> 被重载,可以自动输出 bitset 的值。
#include <iostream>
#include <limits>
#include <bitset>
 
using namespace std;
 
int main()
{
	/*
		Use bitset to create a binary set.
		numeric_limits<unsigned int>::digits is the binary length of type unsigned int.
 
		use constructor : bitset<T>(unsigned int binary_length);
 
	 */
	cout << bitset<numeric_limits<unsigned int>::digits>(123) << endl;
	return 0;
}

题外话:我帮你整理了包括 AI 写作、绘画、视频(自媒体制作)零门槛 AI 课程 + 国内可直接顺畅使用的软件。想让自己快速用上 AI 工具来降本增效,辅助工作和生活?限时报名

当前页阅读量为: