用公式π/4=1-1/3+1/5-1/7...求π的近似值,直到发现某一项的绝对值小于10^-6(1e-6)为止(该项不累加)

#include 
#include 

int main()
{
    int tag=1,n=1;//tag表示项数的正负号
    double sum=0.0,t=1.0;
    while(fabs(t)>1e-6)//fabs(t)求t的绝对值
    {
        sum=sum+t;
        tag*=-1;
        n+=2;
        t=1.0/n*tag;
    }
    printf("%lf",4*sum);
    return 0;
}

用公式π/4=1-1/3+1/5-1/7...求π的近似值,直到发现某一项的绝对值小于10^-6(1e-6)为止(该项不累加)_第1张图片

下面是自己编写函数实现公式求π值,直到发现膜一箱的绝对值小于指定阈值为止(该项不累加),并返回近似值。在main函数中调用该函数,并输出指定阈值为1e-6的近似值。

#include 

double Fun2(double x)//将指定阈值传进来
{
   double sum=0.0,t=1.0;
   int n=1,flag=1;
   while(fabs(t)>=x)
   {
       sum+=t;
       flag=-flag;
       n+=2;
       t=flag*1.0/n;
   }

    return 4*sum;
}
int main()
{
    printf("%lf",Fun2(1e-6));
    return 0;
}

用公式π/4=1-1/3+1/5-1/7...求π的近似值,直到发现某一项的绝对值小于10^-6(1e-6)为止(该项不累加)_第2张图片

你可能感兴趣的:(c语言学习)