问题
问答题
下列程序的输出结果是( )。
int f1(int x,int y)return x>yx:y;
int f2(int x,int y)return x>yy:x;
main()
int a=4,b=3,e=5,d=2,e,f,g;
e=f2(f1(a,b),f1(e,d));
f=f1(f2(a,b),f2(e,d));
g=a+b+c+d-e-f;
printf("%d,%d,%d\n",e,f,g);
答案
参考答案:A
解析: