【单选题】下列程序运行的结果为: public class Test { public static void main(String[] args) { int i; float f = 2.3f; double d = 2.7; i = ((int) Math.ceil(f)) * ((int) Math.round(d)); System.out.println(i); } }
【单选题】Which code determines the int value foo closest to a double value bar?()
A.
Int foo = (int) Math.max(bar);
B.
Int foo = (int) Math.min(bar);
C.
Int foo = (int) Math.abs(bar);
D.
Int foo = (int) Math.ceil(bar);
E.
Int foo = (int) Math.floor(bar);
F.
Int foo = (int) Math.round(bar);
【判断题】Math.round(double e)是返回不大于e的最大整数,Math.floor(double e)是四舍五入运算。
【单选题】Which code determines the int value foo closest to, but not greater than, a double value bar?()
A.
Int foo = (int) Math.max(bar);
B.
Int foo = (int) Math.min(bar);
C.
Int foo = (int) Math.abs(bar);
D.
Int foo = (int) Math.ceil(bar);
E.
Int foo = (int) Math.floor(bar);
F.
Int foo = (int) Math.round(bar);
【判断题】我国能源金融化程度不高,在国际能源资源定价权方面影响力不足,受国际能源价格波动的影响较大。()
【单选题】根据《中华人民共和国劳动法》规定,国家实行带薪年休假制度。
【单选题】( )是为实现能源目标和指标,针对主要能源使用而制定的切实可行的行动和对策。
【简答题】作者说:“没有美食的诱惑、没有神秘的气氛、没有纯洁的童心,就没有过年的乐趣。”作者叙述童年过年时就是从这三个方面入手的,请分别举例说明。
【单选题】定义在Math类中的round(double d)方法的返回类型是什么?
【单选题】What assigns a value to foo that is closest to, but not greater than, a double value bar? 注:哪一项赋一个最接近但不大于 bar的 值给 foo
A.
int foo =(int)Math.max(bar);
B.
int foo =(int)Math.min(bar);
C.
int foo =(int)Math.abs(bar);
D.
int foo =(int)Math.ceil(bar);
E.
int foo =(int)Math.floor(bar);
F.
int foo =(int)Math.round(bar);