diff --git a/04-fibonacci/index.js b/04-fibonacci/index.js index 37c64cc..2c20083 100644 --- a/04-fibonacci/index.js +++ b/04-fibonacci/index.js @@ -1,4 +1,21 @@ export function fibonacci(value) { // implementar logica aqui + -} \ No newline at end of file + + + var termo = value; + var penultimo=0, ultimo=1; + var numero; + + if(termo<2) + numero = termo; + else + for(var count = 2 ; count <= termo ; count++){ + numero = ultimo + penultimo; + penultimo = ultimo; + ultimo = numero; + } + return numero + + } \ No newline at end of file