通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
已知递归函数fun的定义如下,函数调用语句 fun(5) 的返回值是()。
int fun(int n) { if(n<=1)return 1;//递归结束情况 else return n*fun(n-2);//递归 }