运行以下递归代码, fun(6) 的结果是()
def fun(x): if x >= 5: return x * fun(x - 2) if x <= 1: return 1 return x * fun(x - 1) print(fun(6))
720
180
144
48