大题:用递归法将一个整数n转换成字符串。例如,输入483,应输出字符串“483”。n的位数不确定。
书上的答案是这样的:
#include<iostream>
using namespace std;
int main()
{
void convert(int n);
int number;
cout<<"input an integer:";
cin>>number;
cout<<"output:"<<endl;
if(number<0)
{
cout<<"-";
number=-number;
}
convert(number);
cout<<endl;
return 0;
}
void convert(int n)
{
int i;
char c;
if((i=n/10)!=0)
convert(i);
c=n%10+'0';
cout<<" "<<c;
}
问题:(1) c=n%10+'0'; 该句如何理解? +'0' 是什么意思?
(2)假如number=345,执行步骤就是
n=345 i=34
n=34 i=3
n=3 i=0
则n=34 c=…… 然后输出c
但是convert函数是如何实现“流程返回上一次函数调用处的”?返回到n=345??
[此贴子已经被作者于2006-5-8 22:10:08编辑过]