PTA -----近似求Π
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA -----近似求Π相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
int main()
{
double eps, sum=1, i, temp=1;
scanf("%le", &eps);
for(i=1; temp>eps; i++)
{
temp = temp*i/(2*i+1);
sum += temp;
}
printf("PI = %.5f
", 2*sum);
return 0;
}
以上是关于PTA -----近似求Π的主要内容,如果未能解决你的问题,请参考以下文章