c语言谭浩强,hanio塔问题。每一次一个函数调用另外一个函数时,实参是如何传递给形参的?程序代码如下:
#include<stdio.h>
void main()
{
void hanoi(int n,char one,char two,char three);
int m;
printf("input:");
scanf("%d",&m);
printf("The step:\n",m);
hanoi(m,'A','B','C');
}
void hanoi(int n,char one,char two,char three)
{
void move(char x,char y);
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);
}
可以把每一次函数调用时one,two,three与A,B,C的对应关系是如何变化的告诉我吗