单选题 难度 2
1 1 2 3 5 8 …
下面代码的输出是( )。 int fib(int n) { return n < 2 ? n : fib(n-1) + fib(n-2); } // main: cout << fib(7) << endl;