蓝桥杯练习系统之基础练习 BASIC-2 01字串

BASIC-2 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
<以下部分省略>

方法一:

import java.util.Scanner;

public class Main {
    
    

	public static void main(String[] args) {
    
    
		Scanner in = new Scanner(System.in);
		for(int a=0;a<2;a++)
			for(int b=0;b<2;b++)
				for(int c=0;c<2;c++)
					for(int d=0;d<2;d++)
						for(int e=0;e<2;e++)
						{
    
    
							System.out.printf("%d%d%d%d%d\n",a,b,c,d,e);
							
						}
	}

}

方法二:

public class Main {
    
    

	public static void main(String[] args) {
    
    
		int a=0,b=0,c=0,d=0,e=0;
		for(int i=0;i<32;i++) {
    
    
			if(e>1)
			{
    
    
				e=0;
				d++;			
			}
			if(d>1)
			{
    
    
				d=0;
				c++;			
			}if(c>1)
			{
    
    
				c=0;
				b++;			
			}if(b>1)
			{
    
    
				b=0;
				a++;			
			}
			System.out.printf("%d%d%d%d%d\n", a,b,c,d,e);
			e++;
			
		}
	}
			
}

猜你喜欢

转载自blog.csdn.net/qq_39273319/article/details/103338475