我试图用二进制输出运行C ++程序。请帮忙。
0000 0001 0010 0011 0101 0110 0111 1000 1111
答案 0 :(得分:0)
这个可能是
#include <bits/stdc++.h>
using namespace std;
int main(){
int i;
for(int i=1; i<10; i++){
string binary = bitset<8>(i).to_string();
cout << binary << endl;
}
return 0;
}
8在这里是bitset。