首页 > 中学考试杂题 > 题目详情
使用C++,求pi的近似值用下面的公式求pi的近似值pi/4 = 1-1/3+1/5-1/7+.直到最后一项的绝对值小于
题目内容:
使用C++,求pi的近似值
用下面的公式求pi的近似值
pi/4 = 1-1/3+1/5-1/7+.
直到最后一项的绝对值小于10的-7次方为止
如下式我自己编的
#include "stdafx.h"
#include "iostream"
#include "cmath"
#include "conio.h"
using namespace std;
int _tmain(int argc,_TCHAR* argv[])
{
int n = 1;
double P = 0,pi;
for(n=1;1/(2*n-1) < 10^(-7);++n)
{
P += ((-1)^(n+1))*(1/(2*n-1));
}
pi = P*4;
cout
使用C++,求pi的近似值
用下面的公式求pi的近似值
pi/4 = 1-1/3+1/5-1/7+.
直到最后一项的绝对值小于10的-7次方为止
如下式我自己编的
#include "stdafx.h"
#include "iostream"
#include "cmath"
#include "conio.h"
using namespace std;
int _tmain(int argc,_TCHAR* argv[])
{
int n = 1;
double P = 0,pi;
for(n=1;1/(2*n-1) < 10^(-7);++n)
{
P += ((-1)^(n+1))*(1/(2*n-1));
}
pi = P*4;
cout
用下面的公式求pi的近似值
pi/4 = 1-1/3+1/5-1/7+.
直到最后一项的绝对值小于10的-7次方为止
如下式我自己编的
#include "stdafx.h"
#include "iostream"
#include "cmath"
#include "conio.h"
using namespace std;
int _tmain(int argc,_TCHAR* argv[])
{
int n = 1;
double P = 0,pi;
for(n=1;1/(2*n-1) < 10^(-7);++n)
{
P += ((-1)^(n+1))*(1/(2*n-1));
}
pi = P*4;
cout
本题链接: