You are viewing a single comment's thread. Return to all comments →
C#: public static int Fibonacci(int n) { // Write your code here. if(n < 2) { return n; } return Fibonacci(n-1) + Fibonacci(n-2); }
Seems like cookies are disabled on this browser, please enable them to open this website
Recursion: Fibonacci Numbers
You are viewing a single comment's thread. Return to all comments →