- 新年趣事之玩具
- 2016-04-03 20:47:12 @
C++版代码
C++
void hanoi(int n,int from,int to_,int temp)
{
if(n>0)
{
hanoi(n-1,from,temp,to_);
cout<<n<<' '<<from<<' '<<to_<<endl;
hanoi(n-1,temp,to_,from);
}
return;
}
这个是用题中的Pascal语言直接翻译的
1 条评论
-
lrj124 LV 10 @ 2016-11-17 11:33:08
####****C版代码****
c++
void hanoi(int n,int from,int to_,int temp)
{
if(n>0)
{
hanoi(n-1,from,temp,to_);
printf("%d %d %d\n",n,from,to);
hanoi(n-1,temp,to_,from);
}
return;
}
****这个是用题中的Pascal语言直接翻译的****
- 1