码迷,mamicode.com
首页 > 其他好文 > 详细

例4-7 求1!+2!+…+100!

时间:2019-04-06 09:47:37      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:val   分析   使用   for   ret   int   process   ble   main   

例4-7 求1!+2!+…+100!

计算 1!+2!+…+100!
程序核心——两个循环的镶嵌

程序


#include<stdio.h>
int main()
{
    int i,j,n;
    double sum,result;
    sum=0;
    for(i=1;i<=100;i++)
    {
        result=1;
        for(j=1;j<=i;j++)
            result*=j;
        sum=sum+result;
    }
    printf("1!+2!+…+100!=%e\n",sum); 
    return 0;
 } 

结果

1!+2!+…+100!=9.426900e+157

--------------------------------
Process exited after 0.2632 seconds with return value 0
请按任意键继续. . .

分析

重点:与4-6相比未使用自定义函数

例4-7 求1!+2!+…+100!

标签:val   分析   使用   for   ret   int   process   ble   main   

原文地址:https://www.cnblogs.com/5236288kai/p/10660803.html

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