//有1,2,3,4 个数字,问能组成多少个互不相同且无重复数字的三位数。,都是多少。
代码如下:
public class Test1 {
public static void main(String[] args) {
int count =0;
for(int x=100;x<1000;x++){
int ge = x%10;
int shi = (x/10)%10;
int bai = x/100;
if(((ge != shi) && (ge != bai)) && (shi!=bai)){
if(((ge<=4)&&(shi<=4))&&(bai<=4)){
System.out.println(x);
count++;
}
}
}
System.out.println(count);
}
}
|