1、2、3、4四个数字,无重复的3位数

时间:2022-10-30 11:09:47
<span style="font-size:24px;">package lianx;

public class SiWeiShu {

	public static void main(String[] args) {
		//1、2、3、4四个数字,无重复的3位数
		int count=0;
		for (int i = 1; i <=4; i++) {
			for(int j=1;j<=4;j++){
				for(int k = 1;k<=4;k++){
					if(i!=j&&i!=k&&j!=k){
						count++;
						System.out.print(""+i+j+k+" ");
						if(count==6){
							System.out.println();
							count=0;
						}
					}
					
				}
				
			}
			
		}
		

	}

}输出效果 123 124 132 134 142 143 
213 214 231 234 241 243 
312 314 321 324 341 342 
412 413 421 423 431 432 
</span>