Skip to content

Instantly share code, notes, and snippets.

@thiagofm
Created April 29, 2011 22:25
Show Gist options
  • Save thiagofm/949150 to your computer and use it in GitHub Desktop.
Save thiagofm/949150 to your computer and use it in GitHub Desktop.
def fibo(n)
if(n==0)
return 0
elsif (n==1)
return 1
else
return fibo(n-1) + fibo(n-2)
end
end
x = gets.chomp.to_i #pega o valor de fibonacci a ser calculado
puts fibo(x) #imprime o valor de fibo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment