You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include <iostream>
-
- constexpr int fibonacci(const int n) {
- return n == 1 || n == 2 ? 1 : fibonacci(n-1)+fibonacci(n-2);
- }
-
- int main(){
- int fib_5 = fibonacci(5);
- std::cout << "fib 5: " << fib_5 << std::endl;
- return 0;
- }
|