#include <iostream.h>
using namespace std;
int main()
{
float e=1,j=1;
int i=0;
do
{i=i+1;
j=j*i;
e=e+1/j;
}
while(j<100000);
cout<<e<<endl;
}
上面是我的程序。。。
有错误的话帮帮忙指出来
#include <iostream.h>
using namespace std;
int main()
{
float e=1,j=1;
int i=0;
do
{i=i+1;
j=j*i;
e=e+1/j;
}
while(j<100000);
cout<<e<<endl;
}
上面是我的程序。。。
有错误的话帮帮忙指出来
#include <iostream.h>
using namespace std;
错了.改成:
#include <iostream>
using namespace std;
程序没有错误. 运行结果是2.71828.
截图如下: