填空题

已知递归函数fun的定义如下:
int fun(int n)

if(n<=1) return 1;//递归结束情况
else return n *fun(n-2);//递归
则函数调用语句fun(5) 的返回值是______。

【参考答案】

O