单选题 难度 2
把递归展开算一遍。
下面代码的输出是( )。 int f(int n) { return n <= 1 ? 1 : n + f(n - 1); } cout << f(6) << endl;