下列数据定义错误的是________。
A: float f = 5.3f;
B: int d = (int)4.3;
C: byte c = 255;
D: double x = 5.67;
A: float f = 5.3f;
B: int d = (int)4.3;
C: byte c = 255;
D: double x = 5.67;
举一反三
- 假定变量x,f和d的类型分别为int、float和double。下面表达式的值总是为1的是() A: x==(int)(float)x B: d==(double)(float)d C: f==(float)(double)f D: (f+d)-f==d
- 定义int a; float f; double i; 6.定义表达式15+i*f+ˊAˊ的值是( )。 A: float B: int C: cha D: double
- 有定义int a; float b; double f;,则表达式10 + ’a’ + b * f值的数据类型为( ) A: int B: float C: double D: 不确定
- 下列函数声明不正确的是( ) A: float f( int x , int y=3, int z=5 ) B: float f( int x=7, int y=2 ) C: float f( int x=9, int y, int z=2) D: float f( int x , int y, int z=13)
- 在C++语言中,若类C中定义了一个方法int (int a,int b),那么方法 不能与该方法同时存在于类C中。 A: int f(int x,int y) B: int f(float a,int b) C: float f(int x,float y) D: int f(int x,float y)