Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def fibonacci_recursive(n):
- if n <= 0:
- return 0
- elif n == 1:
- return 1
- else:
- return fibonacci_recursive(n - 1) + fibonacci_recursive(n - 2)
- # Example usage
- print(fibonacci_recursive(10)) # Output: 55
Advertisement
Add Comment
Please, Sign In to add comment