下列函数值的类型是_______________。fun(float x){ float y; y=3*x-4; return y; }
举一反三
- 有函数fun ( float x ) { float y; y= 3*x-4; return y; },其函数值的类型是( )
- 中国大学MOOC: 以下函数值的类型是( )。fun (float x){ float y; y= 3*x-4; return y;}
- 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(float x) float y; y=3*x-4; return y; A: int B: 不确定 C: void D: float