码迷,mamicode.com
首页 > 编程语言 > 详细

【c语言】求1~1000的阶乘和数

时间:2014-12-18 22:03:09      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:io   sp   for   on   bs   nbsp   br   c语言   return   

#include<stdio.h>
long  fun(int n){
    if(n==0){
        return 0;
    }else if(n==1){
        return 1;
    }else{
        return fun(n-1)*n;
    }
}
 long fun1(int t){
     int m;
    long sum=0;
    while(t>0){
        m=t%10;
        sum+=fun(m);
        t=t/10;
    }
    return sum;
}

void main(){
    int i;
    for(i=1;i<1000;i++){
        if(i==fun1(i)){
            printf("%d符合条件\n",i);
        }
    }

}

【c语言】求1~1000的阶乘和数

标签:io   sp   for   on   bs   nbsp   br   c语言   return   

原文地址:http://www.cnblogs.com/zhizhuniuniu/p/4172758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!