Posted in 面试题 onFebruary 12, 2016
用下面的公式求∏的近似值,直到最后一项的绝对值小于指定的数(该数由宏定义确定)
∏/4≈1-1/3+1/5=1/7+…
解: #include
main()
#define abs l3-7
{ int sing;
float pu\i,x;
pi=1;
x=3;
sing=-1;
do
{
pi=pi+sing/x;
x+=2;
sing=-1*sing;
}
while((1/x-0)>abs);
pi=pi*4;
printf(“%f\n”,pi);
}
∏/4≈1-1/3+1/5=1/7+…
解: #include
main()
#define abs l3-7
{ int sing;
float pu\i,x;
pi=1;
x=3;
sing=-1;
do
{
pi=pi+sing/x;
x+=2;
sing=-1*sing;
}
while((1/x-0)>abs);
pi=pi*4;
printf(“%f\n”,pi);
}
求∏的近似值,直到最后一项的绝对值小于指定的数
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@