ZCMU 1802: 01字串
程序员文章站
2022-03-13 17:53:38
...
Description
对于长度为5位的一个01串,每一位都可能是0或1,一共有32种可能。它们的前几个是: 00000 00001 00010 00011 00100 请按从小到大的顺序输出这32种01串。
Input
本试题没有输入。
Output
输出32行,按从小到大的顺序每行一个长度为5的01串。
Sample Input
Sample Output
00000 00001 00010 00011 < 以下部分省略>
十进制转二进制
#include<iostream>
using namespace std;
void printbinary(int val)
{
for(int i=4;i>=0;i--)
{
if(val &(1 << i))
cout << "1";
else
cout << "0";
}
}
int main()
{
for(int i=0;i<32;i++)
{
printbinary(i);
cout<<endl;
}
return 0;
}
上一篇: 【剑指Offer】二进制中1的个数
下一篇: 论文对比