编写函数,求e=1+1/1!+1/2!+1/3!+……+1/n!的值。C语言
时间: 2023-09-19 10:09:22 浏览: 255
vc.zip_4 3 2 1_earlierm8a_vc编写htons函数
以下是求e的近似值的C语言代码:
```c
#include <stdio.h>
int main() {
int n;
double e = 1, term = 1;
printf("请输入n的值:");
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
term /= i;
e += term;
}
printf("e的近似值为:%lf", e);
return 0;
}
```
我们先输入n的值,然后用循环计算每一项的值,并且将其加到e中。在每一次循环中,term除以i的值,这就是1/i!的值。最后输出e的近似值即可。
阅读全文