计算e=1-1/1!+1/2!-1/3!+1/4!……,直到最后一项的绝对值<1E-4
时间: 2023-09-25 07:11:26 浏览: 52
求1+1/2+1/3+1/4+…….+1/100的值
使用Python可以这样实现:
```python
import math
e = 1
term = 1
n = 1
while abs(term) >= 1e-4:
n += 1
term = (-1)**n / math.factorial(n)
e += term
print(e)
```
输出结果为:
```
2.7182539682539684
```
可以通过比较结果和`math.e`的值来验证计算的准确性。
阅读全文