第1题:
A.Intfoo=(int)Math.max(bar);
B.Intfoo=(int)Math.min(bar);
C.Intfoo=(int)Math.abs(bar);
D.Intfoo=(int)Math.ceil(bar);
E.Intfoo=(int)Math.floor(bar);
F.Intfoo=(int)Math.round(bar);
第2题:
下列能正确计算45°的余弦值的是( )。
A.double d=Math.cos(45);
B.double d=Math.cosine(45);
C.double d=Math.cos (Math.toRadians(45));
D.double d=Math.cos (Math.toDegress(45));
第3题:
A.Math.ceil(512.51)返回的结果为512
B.Math.floor( )方法用于对数进行下舍入
C.Math.round(-512.51)返回的结果为-512
D.Math.random( )返回结果为0~1,包括0和1
第4题:
The math problem is too difficult.__________ (无一人) of us can work it out in our class.
第5题:
第6题:
第7题:
第8题:
在Math类中random方法可以产生随机数。如果从1到100之间产生一个随机整数(大于等于1,小于等于100),并赋值给n,那么下面语句正确的是()。
第9题:
以下()表达式产生一个0~7之间(含0,7)的随机整数。
第10题:
Which method is an appropriate way to determine the cosine of 42 degrees?()
第11题:
第12题:
Int foo = (int) Math.max(bar);
Int foo = (int) Math.min(bar);
Int foo = (int) Math.abs(bar);
Int foo = (int) Math.ceil(bar);
Int foo = (int) Math.floor(bar);
Int foo = (int) Math.round(bar);
第13题:
A.Intfoo=(int)Math.max(bar);
B.Intfoo=(int)Math.min(bar);
C.Intfoo=(int)Math.abs(bar);
D.Intfoo=(int)Math.ceil(bar);
E.Intfoo=(int)Math.floor(bar);
F.Intfoo=(int)Math.round(bar);
第14题:
下列( )选项是正确计算42度(角度)的余弦值。
A.doubled=Math.cos(42);
B.doubled=Math.cosine(42);
C.doubled=Math.cos(Math.toRadians(42));
D.doubled=Math.cos(Math.toDegrees(42));
第15题:
A.math.ceil()
B.math.fabs()
C.math.pow(x,y)
D.math.trunc(x)
第16题:
第17题:
第18题:
第19题:
第20题:
已知intchinese=95,math=95;下列表达式,最终结果为1的是()
第21题:
Which code determines the int value foo closest to a double value bar?()
第22题:
第23题:
第24题:
Double d = Math.cos(42);
Double d = Math.cosine(42);
Double d = Math.cos(Math.toRadians(42));
Double d = Math.cos(Math.toDegrees(42));
Double d = Math.cosine(Math.toRadians(42));