Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // calcular valor aproximado de pi através da série de Leibniz
- #include <stdio.h>
- #include <math.h>
- #define pi M_PI
- int main(void)
- {
- int i;
- double s,x,e;
- s=0;
- for (i=0;i<=100;i++)
- {
- s+=(pow(-1,i)*1/(2*i+1)); // ENTENDEU POR QUE I+1???
- printf("%lf\n",s);
- }
- s=4*s;
- x=pi;
- e=fabs(((x-s)/x)*100);
- printf("\nValor calculado pela série: %lf \n",s);
- printf("Valor esperado: %lf \n",x);
- printf("Erro percentual: %.1lf% \n\n",e);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement