美文网首页
第一次编程

第一次编程

作者: bcb4e54b63f2 | 来源:发表于2016-01-31 13:10 被阅读0次

    这是一个求阶乘的递归函数,以后每天编写一个程序,提高锻炼自己。谢谢。

    #include <stdio.h>
    int fun(int);
    int main(void){
        int n;
        printf("please input an integer:");
        scanf("%d",&n);
        printf("the %d! is %d",n,fun(n));
    }
    int fun(int n){
        if(n==0){
            return 1;
        }
        else{ 
           return fun(n-1)*n;
        }
    }
    

    相关文章

      网友评论

          本文标题:第一次编程

          本文链接:https://www.haomeiwen.com/subject/bzcskttx.html