私信TA
用户名:uq_69651989863
访问量:1472
签 名:
自我简介:
作者: 菜鸡1号 发表时间:2023-12-07 14:58:23 浏览:9 | 评论:0
解题思路:注意事项:参考代码:
def hanoi(n, a, b, c): if n > 0: hanoi(n - 1, a, c, b) print('moving %d from %s to %s' % (n, a, c)) hanoi(n - 1, b, a, c)n = int(input())hanoi(n, '1', '2', '3')
0.0分
0 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧