美文网首页
C语言-求阶乘

C语言-求阶乘

作者: 广陵周惊蛰 | 来源:发表于2020-01-06 13:04 被阅读0次

    问题描述:求阶乘

    源代码:

    /*求阶乘问题*/
    
    #include <stdio.h>
    
    int factorial (int n); //函数声明 
    
    
    int main (void){
    
        int i,n;
        double product;
    
        printf("请输入您想求阶乘的数字:"); 
        scanf ("%d",&n);
        
        product=1;
        for(i=1;i<=n;i++){
            product = product*i;
        } 
        printf("这个数字的阶乘为:%.0f",product);
        return 0;
    }
    

    运行结果:

    求阶乘

    程序参数:

    • 输出大小: 148.337890625 KiB
    • 编译时间: 0.30s

    相关文章

      网友评论

          本文标题:C语言-求阶乘

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