测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A67201. 当输入 6 时,下列C++程序的输出结果为( )。#include <iostream>

单选题

题目描述

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

#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;
}


选项(单选)