有以下程序: #include<stdio.h> int fun(int x,int y) { if(x!=y)return((x+y)/2); else return(x); } main() { int a=4,b=5,c=6; printf("%d\

admin2018-11-10  7

问题 有以下程序:
#include<stdio.h>
int fun(int x,int y)
{
if(x!=y)return((x+y)/2);
else return(x);
}
main()
{
int a=4,b=5,c=6;
printf("%d\n",fun(2*a,fun(b,
C)));
}
程序运行后的输出结果是(    )。

选项 A、3
B、6
C、8
D、12

答案B

解析 考查函数的调用。输出结果为fun(2*a,fun(b,c))=fun(8,5)=6,答案选B。
转载请注明原文地址:https://kaotiyun.com/show/2lID777K
0

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