#4405. [GESP202512 八级 C++] 第 12 题

[GESP202512 八级 C++] 第 12 题

当输入 6 时,下列程序的输出结果为( )。

#include <iostream>
using namespace std;
int f(int n) {
    if (n <= 3) return n;
    return f(n - 1) + f(n - 2) + 2 * f(n - 3);
}
int main() {
    int n;
    cin >> n;
    cout << f(n) << endl;
    return 0;
}

{{ select(1) }}

  • 14
  • 27
  • 28
  • 15