单项选择题已知递归函数fun的定义如下: intfun(intn) if(n<=1)return 1; 递归结束情况 else return n*fun(n-2); 递归 则函数调用语句fun(5)的返回值是( )。
单项选择题下面的描述中,正确的是( )。