填空题

已知递归函数f的定义如下: int f(int n) { if(n<=1)return 1; //递归结束情况 else retulil n*f(n-2);//递归 } 则函数调用语句f(5)的返回值是 【7】

【参考答案】

O