首页 > 代码库 > 阶乘的递归定义函数

阶乘的递归定义函数

1 def fact(n):
2     if n==0:
3         return 1
4     else:
5         return n*fact(n-1)

 

阶乘的递归定义函数