从1到9数内取4个不同的数。组成千位>百位>十位>个位,这样的数有多少个


public class Count4Number {

public static void main(String[] args) throws InterruptedException {
int count = 0;
for(int i = 1; i <= 9; i ++) {
for(int j = 1; j <= 9; j ++) {
for(int k = 1; k <= 9; k ++) {
for(int g = 1; g <= 9; g ++) {
if(i > j && j > k && k > g) {
System.out.print(i + "" + j + "" + k + "" + g);
count++;
Thread.sleep(1000);
System.out.println();
}
}
//System.out.println();
}
}
}
System.out.println("共有" + count + "个数");
}
}

你可能感兴趣的:(thread,J#)