沐亦2333 发表于 2021-6-3 15:55:32

急!!!题目:公式e=1+1/1!+1/2!+1/3!+......,求 e 的近似值,精度为10的-6次方。

#include <stdio.h>

//函数功能:计算e,精度为f;
double fun(double f)
{
      double e=1;
      double jc=1;//求阶乘,并存入jc中
      /**********Program**********/





      /**********End**********/
      return e;
}

void main()
{
      printf("e=%f\n",fun(10e-6));
}

CClook 发表于 2021-6-3 16:11:31

可以用for循环
页: [1]
查看完整版本: 急!!!题目:公式e=1+1/1!+1/2!+1/3!+......,求 e 的近似值,精度为10的-6次方。