Positions 0 & 1 are definition values. For positions greater than 1, the corresponding Fibonacci value of position
N = Fib (N-1) + Fib (N-2)
.
-
Write a recursive method that takes in a single integer (x >= 0) and returns the appropriate Fibonacci number of the Fibonacci number series.
- Write a method that solves a multiplication problem recursively.