These are math books.(改为否定句)
These_________ _________math books.
第1题:
下列能正确计算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));
第2题:
下列哪个选项是正确计算42度(角度)的余弦值?
A.double d=Math.cos(42);
B.double d=Math.cosine(42);
C.double d=Math.cos(Math.toRadians(42) );
D.double d=Math.cos(Math.toDegrees(42) );
第3题:
下面的继承的说法正确的是____。 class math{ ... }; class math1:math{ ... };
A.math类、math1类没有继承关系
B.math1类是math类的父类
C.math1类对math类继承是公有继承
D.math1类对math类的继承是私有继承
第4题:
下列( )选项是正确计算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));
第5题:
【单选题】以下()表达式产生一个0~7之间(含0)的随机整数
A.Math. floor(Math. Random()* 6)
B.Math. floor (Math. Random()*7)
C.Math. floor (Math. Random()*8)
D.Math. ceil(Math. Random()*8)
第6题:
【单选题】以下()表达式产生一个0~7之间(含0,7)的随机整数
A.Math.floor(Math.random()*6)
B.Math.floor(Math.random()*7)
C.Math.floor(Math.random()*8)
D.Math.ceil(Math.random()*8)