CJCoding With Joseph

Recursive Fibonacci Method

Complete the static method fib so it returns the nth Fibonacci number using RECURSION, where fib(0) = 0, fib(1) = 1, and each later value is the sum of the previous two.

For fib(10) the program prints 55.

Expected Output:

55
0
1
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.