运行下列程序, 输出的结果是? ( )
def f(n):
if n==1:
return 1
else:
return f(n-1) +(n-1) *f(n-1)
print(f(4))
64
24
4
16