柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
有以下程序: #include
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.6
B.3
C.8
D.12
热度🔥1,605
参考答案:A
解析:
【解析】 本题中第一次调用为fun(8,fun(5,6)),因为fun(5,6)返回值为5,所以第二次调用为fun(8,5)=6。所以选择A)。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
下列关于计算机病毒的叙述中,错误的是()。
设x="123",y=123,k="y",表达式x+&k的值是( )。
请分析以下程序。 int main() { pid_t pid; pid = fork(); if(pid==0) printf("I am the child process, my process ID is%d\n",getpid()); else printf("I am the parent process, my process ID is%d\n",getpid());} 那么,该程序正确运行后的结果是
设一棵树的度为4,其中度为4,3,2,1的结点个数分别为2,3,3,0。则该棵树中的叶子结点数为( )。
标签
二级C语言
fun
int
return
调用