📄 hanoi1.cpp
字号:
// Towers of Hanoi#include <iostream.h>void TowersOfHanoi(int n, int x, int y, int z){// Move the top n disks from tower x to tower y. // Use tower z for intermediate storage. if (n > 0) { TowersOfHanoi(n-1, x, z, y); cout << "Move top disk from tower " << x << " to top of tower " << y << endl; TowersOfHanoi(n-1, z, y, x);}}void main(void){ cout << "Moves for a three disk problem are" << endl; TowersOfHanoi(3,1,2,3);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -