• 2022-06-09
    以下函数定义中,正确的是( ).
    A: float fun(float x,y){ ... return x+y;}
    B: float fun(int x,int y);{ ... return x+y;}
    C: int fun(float x,float y);{ ... return x+y;}
    D: float fun(float x,int y){ ... return x+y;}