用C语言编写一段程序。有1、2、3、4,这四个数。求这4个数能组成多少个四位数的组合,并输出。
用C语言编写一段程序。有1、2、3、4,这四个数。求这4个数能组成多少个四位数的组合,并输出。
日期:2006-12-19 14:43:06 人气:1
#include "stdio.h"
main()
{
int a,b,c,d;
int m;
for(a=1;a<=4;a++)
for(b=1;b<=4;b++)
for(c=1;c<=4;c++)
for(d=1;d<=4;d++)
{
m=1000*a+100*b+10*c+d;
printf("%d",m);