以下正确的函数定义是( )
A: float fun(float a,float b)
B: float fun(float a;float b)
C: float fun(float a,float b);
D: float fun(float a,b);
A: float fun(float a,float b)
B: float fun(float a;float b)
C: float fun(float a,float b);
D: float fun(float a,b);
举一反三
- 程序中定义函数 float fun(float a, float b) { return a+b;} 则在调用之前应对该函数进行说明。以下说明中错误的是( ) A: float fun( float a,b); B: float fun(float b, float a); C: float fun(float, float); D: float fun(float a, float b);
- 【单选题】下面的方法重载正确的是() A. int fun (int a, float b){} float fun(int a, float b){} B. float fun (int a, float b) {} float fun (int x, float y){} C. float fun (float a){} float fun(float a, float b){} D. float fun1 (int a, float b){} float fun2(int a ,float b){}
- 【单选题】以下选项中,正确的函数声明是:(______) A: int fun(float a, float b); B: int fun(float a; float b); C: int fun(float a, float b) D: int fun(float a, b);
- 下面的方法重载,正确的是( )。 A)int fun(int a, float b) { } B) float fun(int a, float b) { } float fun(int a, float b) { } float fun(int x, float y) { } C)float fun(float a) { } D)
- 以下函数定义中,正确的是( ). 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;}