下面函数定义正确的是_____。
A: float fun(float x; float y){ return x*y;}
B: float fun(float x, y){ return x*y;}
C: float fun(x,y){ int x,y; return x*y;}
D: float fun( int x, int y){ return x*y; }
A: float fun(float x; float y){ return x*y;}
B: float fun(float x, y){ return x*y;}
C: float fun(x,y){ int x,y; return x*y;}
D: float fun( int x, int y){ return x*y; }
举一反三
- 以下函数定义中,正确的是( ). 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;}
- 以下正确的函数原型形式是:() A: float fun(int x, int y) B: float fun(int x, y) C: float fun(int x, int y); D: float fun(int ,int )
- 如下fun函数的类型是( )。fun(float x){double y;int z;y=x*x;z=(int)y;return(z);} A: void B: double C: int D: float
- fun函数的返回值的类型是 。 fun ( float x ){ float y;y=3*x-4;return y;} A: int B: 不确定 C: void D: float
- 以下函数返回值的数据类型是。 int fun(float x) { float y; y=3*x-4; return y; } A: int B: float C: void D: 不确定