摘要: 经典递归题目: 汉诺塔问题 1 #include <iostream> 2 using namespace std; 3 //x为起点,y为跳板,z为终点 4 void hannuota(int n,char x,char y,char z){ 5 if(n==1) 6 cout<<"从"<<x<< 阅读全文
posted @ 2020-02-15 21:48 PRINT王哲 阅读(141) 评论(0) 推荐(0) 编辑
Live2D