标签:
对于长度为5位的一个01串,每一位都可能是0或1,一共有32种可能。它们的前几个是:
00000
00001
00010
00011
00100
请按从小到大的顺序输出这32种01串。
#include<stdio.h> int main() { for(int i=0;i<=1;++i){ for(int j=0;j<=1;++j){ for(int k=0;k<=1;++k){ for(int l=0;l<=1;++l){ for(int m=0;m<=1;++m){ printf("%d%d%d%d%d\n",i,j,k,l,m); } } } } } return 0; }
标签:
原文地址:http://blog.csdn.net/qq_18062811/article/details/44408453