问题
填空题
函数fun的功能是:从三个形参a,b,c中找出中间的那个数,作为函数值返回。
例如,当a=3,b=5,c=4时,中间的数为4。
注意:部分源程序已给出。
请勿改动主函数main和其他函数中的任何内容,仅在fun函数的横线上填入所编写的若干表达式或语句。
试题程序:
#include<stdio.h>
int fun(int a,int b,int c)
int t;
t=(a>b)(b>cb:(a>cc: (1) )):
((a>c) (2) :((b>c)c: (3) ));
return t;
void main()
int a1=3,a2=5,a3=4,r;
r=fun(a1,a2,a3);
printf("\nThe middle number is:%d\n",r);
答案
参考答案:a