运行下列程序,输出的结果是?( )
def fun(x):
if x > 3:
return x * fun(x-1)
else:
return x
print(fun(6))
120
360
720
60