5.蓝桥杯01子串
问题描述
对于长度为5位的一个01串,每一位都可能是0或1,一共有32种可能。它们的前几个是:
00000
00001
00010
00011
00100
请按从小到大的顺序输出这32种01串。
输入格式
本试题没有输入。
输出格式
输出32行,按从小到大的顺序每行一个长度为5的01串。
样例输出
00000
00001
00010
00011
<以下部分省略>
这个题目就是让你输出0-32的二进制是多少
public class Test4 {
public static void main(String[] args) {
String str = " ";
String[] arr = {"0", "1"};
int total=32;
int tmp=0;
while(tmp<total) {
int i = tmp;
for(int j=0;j<5;j++) {
str = arr[i%arr.length] + str;
i/=arr.length;
}
System.out.println(str);
str = " ";
tmp++;
}
}
}