2020-12-08
阅读量:
1534
python编程:利用递归实现m的n次方
def math1(m,n):
if n==1:
return m
else:
return math1(m,n-1)*m






评论(0)


暂无数据
推荐帖子
0条评论
0条评论
0条评论