标题:汉诺塔小小的错误
取消只看楼主
levononice
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2006-3-21
 问题点数:0 回复次数:0 
汉诺塔小小的错误

#include <iostream.h>
#include <stdio.h>
void hanoi(int n,char x,char y,char z);
void move(char x,int n,char y);
void main()
{
int num;
char A,B,C;
cout<<"Please enter the number of disks num:";
cin>>num;
hanoi(num,A,B,C);
}
void hanoi(int n,char x,char y,char z)
{
if(n==1)
move(x,1,z);
else{
hanoi(n-1,x,z,y);
move(x,n,z);
hanoi(n-1,y,x,z);
}
}
void move(char x,int n,char y)
{

cout <<"move\t"<<n<<"from\t"<<x<< "to"<< y<<endl;
}
程序没有错误
但运行的时候却有乱码
最后一行是不是写法不正确 ?

搜索更多相关主题的帖子: 汉诺塔 小小的 
2006-03-21 14:59



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-51819-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.284185 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved