有如下定义:float a=3.14f;byte b=3;则表达式a+b的值的数据类型为( )。
A.byte
B.int
C.char
D.float
第1题:
设有如下变量定义: double a=3.500000;float b=2.5; int m=2,n=3; 则表达式“(float)(m+n)/2+(int)a%(int)b”的值是( )
A.2.5
B.3.5
C.4.5
D.表达式不正确
第2题:
若有以下定义char a;int b;float c;double d;则表达式a*b+d-c值的类型为
第3题:
有如下定义 int a; float f; double i; 则表达式4+‘a’+i*f的值的数据类型是 ______。
A.int
B.float
C.double
D.不确定
第4题:
设变量a是int型,f是float型,i是double型,则表达式10+′a′+i*f值的数据类型为A.int B.float C.double D.不确定
第5题:
若有定义:int a=2,b=3;float x=3.5,y=2.5;则下面表达式的值为______。(float)(a+b)/2+(int)x%(int)y
A.3.5
B.35
C.3.5
D.35
第6题:
若有定义语句:int a=10;double b=3.14;,则表达式'A'+a+b值的类型是
A.char
B.int
C.double
D.float
第7题:
有如下定义:int a=1;byte b=2;则表达式a+b的数据类型为()。
A.int
B.byte
C.char
D.long
第8题:
若有float f=2.6f;short s=20;则表达式f+s的值的类型是()。
A.float
B.short
C.int
D.byte
第9题:
基本数据类型精度从低到高排列正确的是()
A.byte short int float double
B.byte short int double float
C. short byte int float double
D. short byte int double float
第10题:
若有说明:char w; int x; float y; double z; 则表达式w*x+y-z的值的数据类型是()。
第11题:
有如下定义:floata=3.14f;byteb=3;则表达式a+b的值的数据类型为()
第12题:
byte
int
char
float
第13题:
若有以下定义:char a;int b;float c;double d;则表达式“a*b+d-c”值的类型为( )。
A.float
B.int
C.char
D.double
第14题:
若有以下定义: char a;int b; float c;double d; 则表达式a*b+b-c值的类型为( )。
A. float
B.int
C.char
D.double
第15题:
若有定义:int a=4, b=5;float x=3.4,y=2.1;,则下列表达式的值为( )。 (float) (a+b)/2+(int)x%(int)y
A.5.5
B.55
C.5.5
D.55
第16题:
若有如下定义: int x=3,y=2,Z; 则表达式Z=X/y*3.0的值是( )。
A.2
B.2
C.3
D.3
第17题:
若有以下定义:
char a;int b;
float c;double d;
则表达式a*b+d-c值的类型为( )。
A.A. float
B.int
C.char
D.double
第18题:
有如下表达式19/30*.sqrt(4.0)/5,则该表达式值数据类型为 ______。
A.int
B.float
C.double
D.不确定
第19题:
若有byte b=6;char c='c';则表达式b+c的值的类型是()。
A.int
B.byte
C.char
D.float
第20题:
有如下定义:float a=1.0f;double b=2.0;则表达式a+b的值的数据类型为()。
A.float
B.double
C.char
D.int
第21题:
设有如下定义,则执行表达式(nFa>b)&&(n=c>d)后,n的值为______。 int a=1,b=2,c=3,d=4,m=2,n=2;
A.1
B.2
C.3
D.0
第22题:
有如下定义:inta=1;byteb=2;则表达式a+b的数据类型为()
第23题:
float
double
char
int