Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Este programa en python calcula el n-ésimo término de la suceśión de Fibonacci
- # Licenciado bajo GNU's Not Unix General Public Licence (GNU GPL) versión 3
- def Fibo(x):
- if x<0:
- print("WARNING: Su número es negativo\nse cambia a positivo...")
- return Fibo((-1)*x)
- elif 0<=x and x<=1:
- return x
- else:
- return Fibo(x-1)+Fibo(x-2)
- print(Fibo(int(input("Ingrese un número natural: "))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement