vou postar o que já fiz. Tem como vocês darem uma olhada no código? não sei onde estou errando
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
long double i,x,soma,fat,n;
printf("entre com o expoente de e(x) e o numero de termos da sequencia(n)\n");
scanf("%d%d",&x,&n);
soma=1;
fat=1;
for(i=1;i<=n;i++)
{
fat=fat*i;
soma=soma+(pow(x,i))/fat;
}
printf("o valor da sequencia é %d\n",soma);
system("PAUSE");
}
Question
bonildo
Ae galera estou tentando resolver esse exercício: http://img225.imageshack.us/img225/6046/imagemghq.png
vou postar o que já fiz. Tem como vocês darem uma olhada no código? não sei onde estou errando
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.