我这个怎么输出 第5个人的年龄是10岁?求解。
#include
int getAge(numberpeople)
{ //定义年龄
int age;
//如果是第一个人的话,年龄是10岁
if(numberpeople=1)
age =10;
else
age=getAge(numberpeople-1)+2;
return age;
}
int main()
{
int fifthAge= getAge(5);
printf("第5个人的年龄是%d岁",fifthAge);
return 0;
}