单选题 难度 2
函数自己调用自己。
下面代码的输出是( )。 int f(int x) { if (x <= 1) return 1; return x * f(x - 1); } // main 中: cout << f(5) << endl;