题目内容

若定义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. 以上都不对

下列程序的运行结果是。public class Test{public static void main(String[ ] args){double i=4.0;int n=12;System.out.print(++i);System.out.println(“, ”+n*i++);}}

A. 5.0, 48.0
B. 4.0, 60.0
C. 4.0,48.0
D. 5.0, 60.0

答案查题题库