有如上函数定义,则调用 fun (6) 得到的返回结果为 ( )
int fun(int x){
if(x<=1) return 1;
if(x>=5) return x*fun(x-2);
return x*fun(x-1);
}
720
180
144
48