问题 问答题

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)); }

答案

参考答案:

解析:12

多项选择题
填空题