首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序 int f(int a[],int n) { if(n>1) { int t;t=f(a,n-1); retum t>a[n-1]?t:a[n-1];} else retum a[0];} main() { int a[]={8,2,9,1,
若有以下程序 int f(int a[],int n) { if(n>1) { int t;t=f(a,n-1); retum t>a[n-1]?t:a[n-1];} else retum a[0];} main() { int a[]={8,2,9,1,
admin
2020-11-23
26
问题
若有以下程序
int f(int a[],int n)
{
if(n>1)
{
int t;t=f(a,n-1);
retum t>a[n-1]?t:a[n-1];}
else retum a[0];}
main()
{
int a[]={8,2,9,1,3,6,4,7,5};
printf("%d\n",f(a,9));}
则程序的输出结果是
选项
A、9
B、1
C、8
D、5
答案
A
解析
主函数中调用f(a,9),递归函数的调用过程如下:f(a,9)→f(a,8)→f(a,7)→f(a,6)→f(a,5)→f(a,4)→f(a,3)→f(a,2)→f(a,1),f(a,1)得到返回值为a[0],值为8,递归过程开始回归,回归过程描述如下:8>a[1],返回8→8>a[2]不成立,返回a[2]的值为9……因此函数f的主要功能为计算数组中的最大值。主函数中输出最大值为9。
转载请注明原文地址:https://kaotiyun.com/show/wf3p777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
有以下程序:main()if(x>y)if(y<z)printf(’’%d’’,++y);程序的运行结果是()。
以下选项中,能用作用户标识符的是()。
C语言源程序名的后缀是()。
以下叙述中正确的是()。
设有某函数的说明为:int*func(inta[10],intn);则下列叙述中,正确的是()。
规定输入的字符串中只包含字母和*号。请编写函数fun,其功能是:除了字符串前导的*号之外,将串中其他*号全部删除。在编写函数时,不得使用C语言提供的字符串函数。例如,字符串中的内容为“****A*BC*DEF*G*******”,删除后,字符串中
以下说法中正确的是()。
下列关于数据库设计的叙述中,正确的是
以下选项中非法的C语言字符常量是
随机试题
明朝的税制改革为()
抗ENA抗体中,系统性红斑狼疮(SLE)的血清标志性抗体是
气胸类型中,胸腔内压力趋于稳定的类型是
Theestimatesofthenumbersofhome-schooledchildrenvarywidely.TheU.S.DepartmentofEducationestimatesthereare250,00
执法的特点是()。
=________.
Traditionally,supportersmarkLaborDayinthecontextoflaborversuscorporations,asworkingpeopleversusbigbusiness.But
ManycriticsofEmilyBronte’snovelWutheringHeightsseeitssecondpartasacounterpointthatcommentson,ifitdoesnotre
Thereisnoman_____hisfaults.
A、Shecanusehiscar.B、Shecanborrowsomeoneelse’scar.C、Shemustgethercarfixed.D、Shecan’tborrowhiscar.D推理判断题。女士说
最新回复
(
0
)