蓝桥杯 基础练习 01字串

基础练习 01字串  
时间限制:1.0s   内存限制:256.0MB
      
问题描述

对于长度为5位的一个01串,每一位都可能是0或1,一共有32种可能。它们的前几个是:

00000

00001

00010

00011

00100

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

输入格式
本试题没有输入。
输出格式
输出32行,按从小到大的顺序每行一个长度为5的01串。
样例输出
00000
00001
00010
00011
<以下部分省略>


分析:

运用一个很简单的函数即可 itoa ,头文件是 stdlib.h .

参考链接函数链接:点击打开链接



#include
#include
#include
#include
#include
#include
using namespace std;

int main()
{
    char s[10];
    for(int i=0;i<32;i++)
    {
       itoa(i,s,2);
       for(int i=1;i<=5-strlen(s);i++)
        printf("0");///应为输出是五位,所以位数不够的前面用0补齐
       printf("%s\n",s);
    }
    return 0;
}




你可能感兴趣的:(ACM-思维题)