编写一个表达式,返回34~55的一个随机整数,下面正确的是()。
A. (int)(Math.random()*35+20)
B. (int)(Math.random()*20+35)
C. (int)(Math.random()*21+35)
D. (int)(Math.random()*22)+34
查看答案
下面代码的输出结果是()。Double x = 3.5;System.out.println(x.compareTo(4.5));
A. 3.5
B. 4.5
C. 1
D. -1
Math类定义了哪两个常量PI和___________________。
要对一个浮点数四舍五入到整数部分,使用Math类的_____________方法。
将整数100赋给Integer类型变量是自动拆箱
A. 对
B. 错