用c++输出e的值但是为什么用while循环不行只能用do-while代码如下: 5
#include<iostream>usingnamespacestd;voidmain(){constdoubleeps=0.1e-10;doublee,r;intn=...
#include<iostream>
using namespace std;
void main()
{
const double eps=0.1e-10;
double e,r;
int n=1;
e=1.0;r=1.0;
do
{
e+=r;
++n;
r/=n;
}
while(r>eps);
cout<<"e的值为:"<<e<<endl;
} 展开
using namespace std;
void main()
{
const double eps=0.1e-10;
double e,r;
int n=1;
e=1.0;r=1.0;
do
{
e+=r;
++n;
r/=n;
}
while(r>eps);
cout<<"e的值为:"<<e<<endl;
} 展开
1个回答
展开全部
你指的while不行是什么情况。如果从你的代码上看,没发现有不同呀。
你试试下面两段代码:
代码一:while方式
#include<iostream>
using namespace std;
void main()
{
const double eps=0.1e-10;
double e,r;
int n=1;
e=1.0;r=1.0;
while(r>eps){
e+=r;
++n;
r/=n;
}
cout<<"e的值为:"<<e<<endl;
}
代码二:do...while方式
#include<iostream>
using namespace std;
void main()
{
const double eps=0.1e-10;
double e,r;
int n=1;
e=1.0;r=1.0;
do{
e+=r;
++n;
r/=n;
}while(r>eps);
cout<<"e的值为:"<<e<<endl;
}
结果应该都是2.71828
追问
我试过,while的可以运行但是不出结果,就好像一直在计算,dowhile这个2秒钟就出结果了
追答
你是什么编译环境?我在win7+cfree5下,按F5运行,一编译完成就弹出控制台窗口并显示出运行结果了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询