有以下程序: #include int f(int a) { int b; if(a==1) return(3); b=a—f(a一2); return b; } main() { printf(’’%d\n’’,f(7)); } 程序执行后的输出结果是(

admin2020-06-16  17

问题 有以下程序:
#include
int f(int a)
{
int b;
if(a==1)
return(3);
b=a—f(a一2);
return b;
}
main()
{
printf(’’%d\n’’,f(7));
}
程序执行后的输出结果是(  )。

选项 A、1
B、2
C、3
D、7

答案B

解析 本题考查的是函数的迭代调用,使用代入法,当传入7时,b=7一(5一(3一fun(1))),fun(1)=3,所以b=7一(5一(3—3))=7一5=2。
转载请注明原文地址:https://kaotiyun.com/show/Cz3p777K
0

相关试题推荐
最新回复(0)