int f1 (int x, int y) { retum x>y? x : y; } int f2(int x,int y) { return x>y? y : x; } main() {int a =4,b

admin2016-12-25  1

问题 int f1 (int x, int y)
   { retum 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;
       e = f2(a,b) ;  e= f2( e,c) ;
     f=a+b+c-d -e+2;
             printf( "% d,% d,% d\n",d,f,e)  ;

选项

答案5,6,3

解析
转载请注明原文地址:https://www.kaotiyun.com/show/iVAx777K
0

相关试题推荐
最新回复(0)