首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include<stdio.h> int m1(int x,int y) {returnx<=y?x:y;} int m2(int x,int y) {returnx<=y?y:x;} im fun(int a,int b) {return
有以下程序: #include<stdio.h> int m1(int x,int y) {returnx<=y?x:y;} int m2(int x,int y) {returnx<=y?y:x;} im fun(int a,int b) {return
admin
2021-06-15
47
问题
有以下程序:
#include<stdio.h>
int m1(int x,int y)
{returnx<=y?x:y;}
int m2(int x,int y)
{returnx<=y?y:x;}
im fun(int a,int b)
{return a+b;}
main()
{
int x=2,y=3,z=1;
printf("%d\n",fun(m1(x,y),m2(y,z)));
}
程序的运行结果是( )。
选项
A、5
B、6
C、4
D、3
答案
A
解析
函数m1()返回两个参数中较小的数值,函数m2()返回两个参数中较大的数值,函数fun()返回两个参数之和,所以fun(m1(x,y),m2(y,z))=fun(m1(2,3),m2(3,1))=fun(2,3)=5,答案选A。
转载请注明原文地址:https://kaotiyun.com/show/3wtp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
若函数调用时的实参为变量时,以下关于函数形参和实参的叙述中正确的是
以下程序段中的变量已正确定义:for(i=0;i<4;i++,i++)for(k=1;k<3;k++);prinff("*");程序的运行结果是()。
有以下程序:#includeintfun(intn){if(1nreturnfun(n一1)+n;elsereturn0;}main(){prinff(“%d\n”,fun(3));
以下选项中函数形参不是指针的是
有以下程序#includemain(){charc1=’A’,c2=’Y’;printf("%d,%d\n",c1,c2);}程序的输出结果是
有以下程序yoidfun2(chara,charb){printf(’’%c%c’’,a,b);)chara=’A’,b=’B’;yoidfunl(){a=’C’;b=’D’;)main(){funl();print
有以下程序#include<stdio.h>voidfun(char**p){++p;printf("%s\n",*p);}main(){char*a[]=("Morning","Afternoon","Evening",
设有定义doublea[10],*s=a;以下能够代表数组元素a[3]的是
设文件指针fp已定义,执行语句fp=fopen("file","w");后,以下针对文本文件file操作叙述的选项中正确的是
以下正确的说法是()。
随机试题
A、Teacherandstudent.B、Husbandandwife.C、Customerandsalesman.D、Parentandchild.B从两人对话内容可以看出,两人关系较为亲密,男士要为女士买项链作为生日礼物,女士
关于紧缩型战略的特点,下列说法错误的是()
1mol软脂酸(16C)彻底氧化成CO2和水时,净生成ATP的摩尔数
苷类化合物是指
边缘性骨髓炎根据骨质损害的特点可分为()。
在企业不提供资金的情况下,境外经营活动产生的现金流量难以偿还其现有债务和正常情况下可预期债务的,境外经营应当选择与企业记账本位币相同的货币作为记账本位币。()
Timewas,oldpeopleknewtheirplace.Scepterswerepassedtosonsanddaughters,crownsplacedonyoungerheads.Notanymore.
Thelegallimitfordrivingafterdrinkingalcoholis80milligramsofalcoholin100millilitersofblood,whentested.Butthe
AmazinglyfortheBritish,wholovequeues,thereisnoformalline-up—thebarstaffareskilledatknowingwhoseturnitis.Yo
A、Shehastowork.B、Shehasgotanappointment.C、Shehastogotoschool.D、Shewantstoeatinanewrestaurant.A由女士提到的butI
最新回复
(
0
)