C++计算圆周率程序,结果不精确
用的CODEBLOCKS,按精度结果应该是3.14159,但我写的结果是3.18326#include<iostream>usingnamespacestd;double...
用的CODEBLOCKS,按精度结果应该是3.14159,但我写的结果是3.18326
#include <iostream>
using namespace std;
double arctan(double x);
double power(double s,double d);
int main()
{
double n=16.0*arctan(1/5.0)-4.0*arctan(1/239.0);
cout<<"n="<<n;
}
double arctan(double x)
{
double arc=0,i=1.0,a,b,o=2.0,c;
while(o=2.0) //
{
arc=arc+power((-1.0),(i+1.0))*power(x,(2.0*i-1.0))/(2.0*i-1.0);
i++;
b=power(x,(2.0*i-1.0))/(2.0*i-1.0);
c=power(10.0,(-15.0));
if(b<c)
break;
}
return(arc);
}
double power(double s,double d)
{
double val=1.0;
while(d>0)
{val*=s;
--d;}
return(val);
} 展开
#include <iostream>
using namespace std;
double arctan(double x);
double power(double s,double d);
int main()
{
double n=16.0*arctan(1/5.0)-4.0*arctan(1/239.0);
cout<<"n="<<n;
}
double arctan(double x)
{
double arc=0,i=1.0,a,b,o=2.0,c;
while(o=2.0) //
{
arc=arc+power((-1.0),(i+1.0))*power(x,(2.0*i-1.0))/(2.0*i-1.0);
i++;
b=power(x,(2.0*i-1.0))/(2.0*i-1.0);
c=power(10.0,(-15.0));
if(b<c)
break;
}
return(arc);
}
double power(double s,double d)
{
double val=1.0;
while(d>0)
{val*=s;
--d;}
return(val);
} 展开
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询