摘要: #include<stdio.h>int main(){ int m; void hanoi(int n,char x,char y,char z); printf("input the number of disk:\n"); scanf("%d",&m); hanoi(m,'A','B','C' 阅读全文
posted @ 2016-03-09 16:53 胡卫雄 阅读(299) 评论(0) 推荐(0) 编辑