题解 包💯的
2024-11-02 17:59:45
发布于:上海
6阅读
0回复
0点赞
纳西妲赋予了我超乎常人智慧
#include<iostream> //纳西妲万岁万万岁October twenty-seventh ☢☣
using namespace std;
void move(int n, char f, char t, char a) {
if (n == 1) {
cout << f << " --" << n << "--> " << t<< endl;
return;
}
move(n - 1, f, a, t);
cout << f << " --" << n << "--> " << t << endl;
move(n - 1, a, t, f);
}
int main() {
int n;
cin >> n;
move(n, 'A', 'C', 'B');
return 0;
}
全部评论 6
有意见可以提哦
2024-11-02 来自 上海
12024-11-02 来自 上海
1
UID:292932759
2024-11-02 来自 上海
02024-11-02 来自 上海
0包💯的
2024-11-02 来自 上海
0♋〽
2024-11-02 来自 上海
02024-11-02 来自 上海
0
有帮助,赞一个