会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
郑zhi灿
博客园
首页
新随笔
联系
管理
订阅
2019年3月25日
python 游戏 —— 汉诺塔(Hanoita)
摘要: 一.非可视化代码 def printf(A,C): #盘子移动的输出格式 print("{} --> {}".format(A,C)) def move(n,A,B,C): if n == 1: printf(A,C) #将最后1个盘子从A座移到C座 else: move(n-1,A,C,B) #将
阅读全文
posted @ 2019-03-25 20:53 郑zhi灿
阅读(1008)
评论(0)
推荐(0)
公告