2. The Fibonacci sequence is defined as
f(n) = f(n - 1) + f(n - 2)
with f(0) = 0 and f(1) = 1.
Find f(54) by a program or maually. Note that this number must
be positive
and f(53) = 53.......73 (starting with 53 and ending with 73).
I must admit that
my three machines including a desktop are unable to find f(54)
and they
quit during computation.
The answer is f(54) = 86267571272
*/
The Java code:
public...