计算一个整数N的阶乘-python 摘要:解题思路:递归解法,注意n=0的情况,阶乘也是1.注意事项:参考代码:def factorial(n): if n == 0: return 1 elif n =…… 题解列表 2024年03月06日 0 点赞 0 评论 132 浏览 评分:0.0