第1题:
表达式isinstance(4j,(int,float,complex))的值为__________。
第2题:
表达式isinstance(3,object)的值为_____________。
第3题:
已有定义:float x=5.5;则表达式:x=(int)x+2的值为。
第4题:
若有以下定义: char a;int b; float c;double d; 则表达式a*b+b-c值的类型为( )。
A. float
B.int
C.char
D.double
第5题:
表达式float(25)/4 int(14.4)%5的值分别为【 】和【 】。
第6题:
表达式type(3)in(int,float,complex)的值为__________。
第7题:
表达式type(3+4j)in(int,float,complex)的值为____________。
第8题:
若有定义:int a=4,b=5;float x=3.4,y=2.1;,则下列表达式的值为( )
(float) (a+b)/2+(int)×%(int)y
A.5.5
B.55
C.5.500000
D.55.00000
第9题:
设有如下变量定义: 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.表达式不正确
第10题:
若有定义:int x=1,y=2;float a=3.7,b=2.1;则(x+y)%2+(int)a/(int)b表达式的值为( )。