Gyll Posted May 14, 2012 Report Share Posted May 14, 2012 6) Elaborar um algoritmo capaz de imprimir a seguinte sequência:a- 1/1 + 2/4 + 3/9 + 5/25 + ....... + 10/100b- 1/1 + 3/2 + 5/3 + 7/4 + ......... + 99/50Eu tentei o seguinte:#include <stdio.h>#include <stdlib.h>int main (){ int i,j; for (i=1;i<=10;i++) { printf("%i/%i + ", i,i*i); } printf ("\n\n\n"); system("pause");}Porém a letra b não consigo de jeito nenhum.Se alguém puder ajudar.Vlw, t+ Quote Link to comment Share on other sites More sharing options...
0 invader_zim Posted May 14, 2012 Report Share Posted May 14, 2012 Eu faria assim:#include <stdio.h> int main(void) { unsigned i, j; for (i = 1, j = 1; j <= 50; i += 2, j++) { printf("%u/%u", i, j); if (j != 50) printf(" + "); } return 0; } Quote Link to comment Share on other sites More sharing options...
Question
Gyll
6) Elaborar um algoritmo capaz de imprimir a seguinte sequência:
a- 1/1 + 2/4 + 3/9 + 5/25 + ....... + 10/100
b- 1/1 + 3/2 + 5/3 + 7/4 + ......... + 99/50
Eu tentei o seguinte:
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int i,j;
for (i=1;i<=10;i++)
{
printf("%i/%i + ", i,i*i);
}
printf ("\n\n\n");
system("pause");
}
Porém a letra b não consigo de jeito nenhum.
Se alguém puder ajudar.
Vlw, t+
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.