#include #include using namespace std; void towerOfHanoi(int disks,char stand1,char stand2,char stand3) { if(disks==1) {cout<<"Move disk 1 from "<>n; towerOfHanoi(n,'A','B','C'); }