码迷,mamicode.com
首页 > 其他好文 > 详细

近似计算

时间:2017-01-10 21:11:51      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:include   term   using   1.0   break   std   int   ++   double   

计算:PI/4=1-1/3+1/5-1/7+...,直达最后一项小于10-6

#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
int main()
{
    double sum=0;
    for(int i=0;;i++)
    {
        double term=1.0/(i*2+1);
        if(i%2==0)
            sum+=term;
        else
            sum-=term;
        if(term<1e-6)
            break;
    }
    printf("%.6f\n",sum);
    return 0;
}

近似计算

标签:include   term   using   1.0   break   std   int   ++   double   

原文地址:http://www.cnblogs.com/Aftersoon-sun/p/6270519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!