求助汉诺塔递归为什么不用return 0;也能运行成功
代码如下:#include<stdio.h>
int main()
{
void hanoi(int n,char one,char two,char three);
int m;
printf("input the number of diskes:\n");
scanf("%d",&m);
hanoi(m,'A','B','C');
}
void hanoi(int n,char one,char two,char three)
{
void move(char x,char y);
if(n<=0)
printf("input error");
if(n==1)
move(one,three);
else
{hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}
}
void move(char x,char y)
{
printf("%c-->%c\n",x,y);
} 我估计现在编译器都智能了
你不写,会自动给你加上
qiuyouzhi 发表于 2020-4-15 14:30
我估计现在编译器都智能了
你不写,会自动给你加上
关键是小甲鱼课件和谭浩强教材P191都没加,而且我用devc++其他时候不加不能编译 这是不规范的写法,主要还是看编译器,有的会报错,有的不会。建议还是加上 return 0 好 像vs这样的编译器对代码标准就比较严格,最好还是写上比较好。也是一种良好的习惯
页:
[1]