fun函数的返回值的类型是 。 fun ( float x ){ float y;y=3*x-4;return y;}
A: int
B: 不确定
C: void
D: float
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: 不确定
- 以下函数值的返回值类型是( )。 fun(float x) float y; y=3*x-4; return y; A: int B: 不确定 C: void D: float
- 下面函数定义正确的是_____。 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;}
- 下列函数返回值的数据类型是( ) fun (int x) int y;y=4*x-5;return y; A: void B: int C: float D: 不确定