【王道JAVA】【程序 11 求不重复数字】

题目:有 1、2、3、4 个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
程序分析:可填在百位、十位、个位的数字都是 1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。

public class WangDao {
	public static void main(String[] args){
		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((100 * i) + (10 * j) + k + " ");
						if (count % 5 == 0) {
							System.out.println();
						}
					}
				}
			}
		}
		System.out.println();
		System.out.println("The amount of these numbers is " + count);
	}
}

猜你喜欢

转载自blog.csdn.net/YelloJesse/article/details/89375914