你写的是使用泰勒公式求e,少一个1。
正确的:e=1+1/1!+1/2!+1/3!+......
》C++代码(while循环)》》:
#include
void main()
{
double e=1;
double jc=1;//求阶乘,并存入jc中
int i=1;
while(1/jc>=1e-6)
{
e=e+1/jc;
i++;
jc=jc*i;
}
cout<<"e="<
》C代码》》:
#include
void main()
{
double e=1;
double jc=1;//求阶乘,并存入jc中
int i=1;
while(1/jc>=1e-6)
{
e=e+1/jc;
i++;
jc=jc*i;
}
printf("e=%f\n",e);
}
》其他参考答案》》:http://zhidao.baidu.com/question/56549128.html?si=5
还有不懂可以HI我,只要我力所能及。呵呵!