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

c语言用递归求:10的阶乘、100+99+98...+3+2+1的值。

时间:2018-04-01 13:20:05      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:span   \n   class   div   clu   color   递归   语言   main   

#include <stdio.h>
#include <string.h>
void main(){
    int myfun(int in);
    int  a =myfun(10);
    printf("%d\n", a);
}

int myfun(int in){
    if (in > 1)
        //将下面的*换成+,就可以求100+99+98...+3+2+1的值呢。
        return in * myfun(in-1);
    else
        return 1;
}

 

c语言用递归求:10的阶乘、100+99+98...+3+2+1的值。

标签:span   \n   class   div   clu   color   递归   语言   main   

原文地址:https://www.cnblogs.com/airduce/p/8686127.html

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