| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 975 人关注过本帖
标题:汉诺塔小程序
取消只看楼主 加入收藏
zfxheb123
Rank: 1
来 自:山东济宁
等 级:新手上路
帖 子:23
专家分:0
注 册:2008-4-30
结帖率:100%
收藏
 问题点数:0 回复次数:0 
汉诺塔小程序
#include"string.h"
#include"stdio.h"

 char move(char getone,char putone)
{
   printf("%c-->%c\n",getone,putone);

}
 char hanoi(int n,char one,char two,char three)
{
if(n==1)
move(one,three);
else
{
 hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}

}

main()
{

char haoni(int,char,char,char);
int m=3;
char one,two,three;
one=getchar();two=getchar();three=getchar();
hanoi(m,one,two,three);


}



#include"string.h"
#include"stdio.h"

 char move(char getone,char putone)
{
   printf("%c-->%c\n",getone,putone);

}
 char hanoi(int n,char one,char two,char three)
{
if(n==1)
move(one,three);
else
{
 hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}

}

main()
{

char haoni(int,char,char,char);
int m=3;
char one,two,three;
one=getchar();two=getchar();three=getchar();
hanoi(m,one,two,three);


}









#include"string.h"
#include"stdio.h"

 char move(char getone,char putone)
{
   printf("%c-->%c\n",getone,putone);

}
 char hanoi(int n,char one,char two,char three)
{
if(n==1)
move(one,three);
else
{
 hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}

}

main()
{

char haoni(int,char,char,char);
int m=3;
char one,two,three;
one=getchar();two=getchar();three=getchar();
hanoi(m,one,two,three);


}
搜索更多相关主题的帖子: 汉诺塔 char three one 
2008-05-03 18:35
快速回复:汉诺塔小程序
数据加载中...
 
   



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

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