标签:def put int style alt mic col image print
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) n=input() move(int(n),‘A‘,‘B‘,‘C‘)
标签:def put int style alt mic col image print
原文地址:https://www.cnblogs.com/chenzhijie/p/12655533.html