pi的计算
#include <iostream>#include <iomanip>
#include <cmath>
using namespace std;
int main()
{
int s = 1;
double n = 1, t = 1, pi = 0;
while ((fabs(t)) > le - 7)
{
pi = pi + t;
n = n + 2;
s = -s;
t = s / n;
}
pi = pi * 4;
cout << "pi= " << setiosflags(ios::fixed) << setprecision(6) << pi << endl;
system("pause");
return 0;
}
这里面的fabs 和le是什么。(这是一个算pi的程序pi/4=1-(1/3)+(1/5)-(1/7)+...)。