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