โ Back to Functions
Question 261
Nth Fibonacci Number
Nth Fibonacci Number
Write a function long long fib(int n) that returns the nth Fibonacci number, 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
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.