把做工程过程比较重要的一些代码段记录起来,下面的代码是关于C语言通过傅里叶展开式计算圆周率PI的代码。
#include
#include
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)