[C语言][100例题]1、2、3、4可以组成几个不重复的三位数
#include <stdio.h>/*
题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
*/
int _1_main()
{
int count = 0;
for(int x=1;x<5;++x){
for(int y=1;y<5;++y){
for(int z=1;z<5;++z){
if((x==y)||(x==z)||(y==z)) continue;
++count;
}
}
}
printf("1、2、3、4中不重复的三位数有 %d 个。",count);
return 0;
}
页:
[1]