摘要: #include<iostream>using namespace std;void move(int n, char a, char b, char c){ if (n == 0) return; move(n - 1, a, c, b); cout << a << "-->" << c << e 阅读全文
posted @ 2023-04-26 21:34 a_true 阅读(19) 评论(0) 推荐(0)