Posts by Barbara Coltro • 1 point
2 posts
-
-3
votes1
answer167
viewsQ: Show F(n) of the Algorithm sequence of Fibonacci
I need to know the last term of the Fibonacci sequence, I’ve done it to show all the terms, but I need you to show me the last I’m using the Visualg Algoritmo "Fibonacci" Var v1, v2, v3, limite,…
-
0
votes1
answer80
viewsQ: Convert for to while
#include <stdio.h> #include <stdlib.h> int main(void) { int X[10], cont; cont=0; while(cont<10){ printf("Digite um numero inteiro: "); scanf("%d",&X[cont]); if(X[cont] %2 == 0){…