#include <stdio.h>
int numpep(n)
{
int age
if(n==1)
age==10;
else
age=numpep(n-1)+2;
return age;
}
int main
int fifage=numpep(5);
printf("第五个人年龄是%d岁",fifage);
return 0;
东西丢了
为啥这个的int getAge(numpeople)
这个people不用加int
还有一处,if语句后面的应为age=10