c_cpp decimal2binary

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp decimal2binary相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
using namespace std;

int main() {
	int d = 11;
	cout << d << endl;	// 11
	string b = "";
	while (d) {
		b = to_string(d % 2) + b;
		d /= 2;
	}
	cout << b << endl;	// 1011
	return 0;
}
#include <iostream>
#include <string>
using namespace std;

int main() {
	int value = 11;
	cout << value << endl;	// 11
	char str1[10];
	_itoa_s(value, str1, 2);
	cout << str1 << endl;	// 1011
	return 0;
}

以上是关于c_cpp decimal2binary的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 200.岛屿数量

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *