Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- h. Solicite ao usuário a quantidade de termos que ele deseja e imprima a sequencia abaixo e a
- soma dos termos.
- 1 + 1 + 2 + 3 + 5 + 8 +…
- 2 3 5 7 11 13
- * em cima sequencia de Fibonacci e embaixo sequencia de Primos.
- */
- #include "stdio.h"
- main(){
- int qtd, n1=0, n2=1, f=0, p=2, cont=0, j;
- int a = 0;
- printf("Entre com a quantidade de termos: ");
- scanf("%d", &qtd);
- for(int i=0; i<=qtd; i++){
- cont=0;
- for(j=1; j<=i; j++){
- if (i%j==0){
- cont++;
- }
- }
- if(i!=0){
- if(cont==2){
- //printf("%d ", i);
- printf("%d/%d + ", f, i);
- }
- }
- /*if(i!=0){
- printf("%d + ", f);
- }*/
- n1 = n2;
- n2 = f;
- f = n1+n2;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement