Jump to content
Fórum Script Brasil
  • 0

Laço de repetição duvida


Eproctux

Question

Galera o que está errado aqui?=/

/*Desenvolva um programa em C que receba um número N,

calcule e mostre o valor da seguinte série:

Série = 1 + 1/2 + 1/3 + ... + 1/N.*/

float serie=1;
int n,cont;
printf("Digite um numero inteiro : ");
scanf("%d",&n);
for(cont=2;cont<=n;cont++)
   {
   serie=serie + 1/cont;                       
   }
   printf("O valor da serie \x82 : %f",serie);

<_<

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Eu faria diferente,olhe:

float serie=1;
int n,cont;
printf("Digite um numero inteiro : ");
scanf("%d",&n);
for(cont=2;cont<=n;cont++)
   {
   serie=serie+(1/cont);
   }
   printf("O valor da serie: %f",serie);
   return(1);

Teste e vê se funcione :D

Edited by athoslive
Link to comment
Share on other sites

  • 0
Eu faria diferente,olhe:

float serie=1;
int n,cont;
printf("Digite um numero inteiro : ");
scanf("%d",&n);
for(cont=2;cont<=n;cont++)
   {
   serie=serie+(1/cont);
   }
   printf("O valor da serie: %f",serie);
   return(1);

Teste e vê se funcione :D

não da certo não continua retornando 1.0 e n sai disso.

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...