若定义int a=3,b=3,下列表达式中值不为9的是______。
A. a*(++b)
B. a*(b++)
C. (a++)*b
D. (a--)*b
在Java中允许对浮点数做模运算,语句1024.2%100的运算结果为()
A. 24
B. 24.2
C. 10
D. 0.2
若定义有short s=10; byte b=10; char c='a'; 则表达式s * b + c的类型为。
A. byte
B. short
C. char
D. int
自定义类型转换是由按优先关系从低级数据转换为高级数据,优先次序为()
A. char-int-long-float-double
B. int-long-float-double-char
C. long-float-int-double-char
D. 以上都不对