其他分享
首页 > 其他分享> > C语言通过傅里叶展开式计算圆周率PI的代码

C语言通过傅里叶展开式计算圆周率PI的代码

作者:互联网

把做工程过程比较重要的一些代码段记录起来,下面的代码是关于C语言通过傅里叶展开式计算圆周率PI的代码。

include

include <math.h>

using namespace std;

int main(){
long double pi = 0;
long double n = 1, x = 1;
int sign = 1;

    while ( fabs(x) > 1e-8){

            n++;
    }

    cout << "the value of pi is : " << pi << "n" << endl;

    return 0;

}

测试结果为:

the value of pi is : 3.14159

标签:include,int,double,long,C语言,展开式,PI
来源: https://www.cnblogs.com/SHUN019/p/15451372.html