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.

01-const-expr.cc 235 B

1234567891011
  1. #include <iostream>
  2. constexpr int fibonacci(const int n) {
  3. return n == 1 || n == 2 ? 1 : fibonacci(n-1)+fibonacci(n-2);
  4. }
  5. int main(){
  6. int fib_5 = fibonacci(5);
  7. std::cout << "fib 5: " << fib_5 << std::endl;
  8. return 0;
  9. }