丝路新程规划递归计算函数,调用 fun(6) 结果为()
int fun(int x) { if(x >= 6) return x * fun(x-2); if(x <= 1) return 1; return x * fun(x-1); }
720
144
180
48