Q:

Write a method that returns the nth element of the Fibonacci Sequence

belongs to collection: java exercises (medium level )

0

Write a method that returns the nth element of the Fibonacci Sequence
The Fibonacci Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34,...
The next number is found by adding up the two numbers before it.
Assume that indexes start at zero, e.g., fib(0) = 0, fib(1) = 1, ...

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public Integer fibonacci(Integer n) {
if (n == 1) {
    return 1;
} else if (n == 0) {
    return 0;
} else {
    return fibonacci(n - 1) + fibonacci(n - 2);
}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a method that returns the sum of all even Fi... >>
<< Write a method that checks if a number is a prime ...