有以下程序
Int f1(int x,int y)
{ return x>y?x:y; }
Int f2(int x,int y)
{ return x>y?y:x; }
Main()
{int a=4,b=3,c=5,d,e,f;
D=f1(a,b); d=f1(d,c);
E=f2(a,b); e=f2(e,c);
F=a+b+c-d-e;
Printf("%d,%d,%d\n",d,f,e);
}
执行后输出的结果是______。
A.3,4,5 B.5,3,4 C.5,4,3 D.3,5,4正确答案C