根据公式e=1+1⼀1!+1⼀2!+1⼀3!+...求e的近似值,精度要求为0.00001。大神之需看一下我做的为什么不对。

2024-12-03 16:42:21
推荐回答(1个)
回答(1):

#include #include using namespace std; int main() { int n=1; float s=0.0; int i=1; while(fabs(1.0/float(n))>0.00001) ; //这里有问题,将 ;去掉 { s=s+1.0/float(n); n=n*i; i=i+1; } cout<
希望采纳