int FibonacciR::Fibonacci(const int &n){ if(n<=1) return n; return Fibonacci(n-1) + Fibonacci(n-2); }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)