程序1:汉诺塔问题 #include<iostream> // N层汉诺塔问题 using namespace std; #include<string> void process(int N, string from,string to,string help) { if(N == 1) { cout<<"Move 1 from "+ from +"to "+ to<<endl; } else { process(N-1,from, help, to); cout<<"Move &q...