摘要: n=input("输入汉诺塔碟子总数") def move(n,a,b,c): if n==1: print(a,'->',c) else: move(n-1,a,c,b) move(1,a,b,c) move(n-1,b,a,c) 阅读全文