问题 单项选择题

int fm(int a,int b )
if(b==1)return a;
else return a+fm(a,b-1);

main()

printf("%d\n",fm(4,3));

答案

参考答案:L

判断题
填空题