输入 5,下列阶乘代码输出结果是
def fac(n): if n <= 1: return 1 return n * fac(n-1) x = int(input()) print(fac(x))
5
25
120
720