码迷,mamicode.com
首页 > 其他好文 > 详细

基础练习(02)十进制化二进制01字串

时间:2020-06-28 13:13:48      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:问题   iostream   01字串   while   for   class   输入   temp   没有   

/*
问题描述
对于长度为5位的一个01串,每一位都可能是0或1,一共有32种可能。它们的前几个是:
00000
00001
00010
00011
00100

请按从小到大的顺序输出这32种01串。

输入格式
本试题没有输入。

输出格式
输出32行,按从小到大的顺序每行一个长度为5的01串。

样例输出
00000
00001
00010
00011
<以下部分省略>
*/
#include <iostream>
using namespace std;

void f()
{
    for (int i = 0; i < 32; i++)
    {
        int a[5] = {0};
        int temp = i;
        // 下标索引
        int index = 4;
        while (temp >= 1)
        {
            // 依次取每一位
            a[index] = temp % 2;
            index--;
            // 为了除掉后面的位
            temp = temp / 2;
        }
        for (int j = 0; j < 5; j++)
        {
            cout << a[j];
        }
        cout << endl;
    }
}
int main()
{
    f();
    return 0;
}

基础练习(02)十进制化二进制01字串

标签:问题   iostream   01字串   while   for   class   输入   temp   没有   

原文地址:https://www.cnblogs.com/ddelicacy/p/13202238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!