Jump to content
Fórum Script Brasil
  • 0

pequena soma em c


methoB_man

Question

alguém pode me dizer onde estou errando

meu professor me pediu para fazer isso :

Escreva um algoritmo que lê um valor n inteiro e positivo e que calcula a seguinte soma:

S := 1 + 1/2 + 1/3 + 1/4 + ... + 1/n

O algoritmo deve escrever cada termo gerado e o valor final de S.

eu fiz isso , mas a soma está dando sempre 1 , porque ?

#include <stdio.h>
#include <conio.h>

main () {
int num,den,n,i;
float soma ,c;
printf("escolha quantidade de termos\n");
scanf("%d",&n);
num=1;
den=1;
soma=0;
i=0;

while (i<n)
{
c=num/den;
soma=soma+c;
den++;
i++;
printf("soma:%2.2f\n",soma);
}

getch (); 

}

muito obrigado!!!!!!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Se você ainda não conseguiu, eu fiz o algoritmo aqui pra você.

#include <stdio.h>

#include <conio.h>

int main()

{

int n;

float i;

float soma;

printf("Entre com um numero inteiro: ");

scanf("%d" , &n);

soma=0;

for(i=1 ; i<=n ; i++)

{

float resultado=1/i;

printf("\nTermo: %f" , resultado);

soma=soma+resultado;

}

printf("\nA soma dos termos ser%c: %f\n" , 160 , soma);

getch();

return 0;

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...