在C语言中用while语句计算e≈1+1/1!+1/2!+…+1/n!
时间: 2024-01-29 10:02:12 浏览: 86
用C语言编程:用公式计算:e≈1+1/1!+1/2! …+1/n!,精度为10-6
5星 · 资源好评率100%
以下是在C语言中用while语句计算e≈1+1/1!+1/2!+…+1/n!的代码:
```c
#include <stdio.h>
int main() {
int n, i = 1;
double s = 1, t = 1;
printf("请输入一个正整数(赋给n):");
scanf("%d", &n);
while (i <= n) {
t *= i; // 计算i的阶乘
s += 1.0 / t; // 累加每一项
i++; // 每次循环后加1
}
printf("%f\n", s);
return 0;
}
```
阅读全文