解题思路:

将阶乘和数存入数组,利用数组排序(只是为a[i]和a[i+1]的首位大小比较)

注意事项:





参考代码:

#include <stdio.h>

#include <math.h>

int fun(int n);//阶乘递归函数

int main()

{

int n,s,a[32],i=0,count;

for(n=1;n<=100000;n++){//就当全部符合,所有n<=10万

int temp=n;

s=0;

while(temp){

s+=fun(temp%10);

temp/=10;

}

if(n==s)

a[i++]=n;//将阶乘和数存入数组好按要求排序

}

count=i;//保存数组大小

int j;

/*利用数组排序(只是为a[i]和a[i+1]的首位大小比较)*/

for(j=0;j<count-1;j++){

int flag=0;

for(i=0;i<count-1-j;i++){

int temp=a[i],tep=a[i+1],s1;

while(temp){

s=temp%10;

temp/=10;

}

while(tep){

s1=tep%10;

tep/=10;

}

if(s>s1){

flag=1;

temp=a[i];

a[i]=a[i+1];

a[i+1]=temp;

}

}

if(!flag)

break;

}

for(i=0;i<count;i++)

printf("%d ",a[i]);

return 0;

}


int fun(int n)

{

if(n>1)

return n*fun(n-1);

else

return 1;

}


点赞(1)
 

0.0分

2 人评分

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论