网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

math.round(11.5)和math.round(-11.5)的结果各是多少?


参考答案

更多 “ math.round(11.5)和math.round(-11.5)的结果各是多少? ” 相关考题
考题 Math.round(-11.5)的值是多少() A.-11.5B.-11C.-12D.11

考题 Math.round(11.5)的值是多少() A.11.5B.11C.12D.13

考题 Math.round(11.5)等於多少? Math.round(-11.5)等於多少?

考题 阅读下面的程序: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);}} 程序执行后,运行结果为以下哪个选项?() A.9B.5C.6D.6.1

考题 TD-SCDMA理论上的小区最大半径是多少( ) A. 11.5KMB. 1.5KMC. 11.25KMD.5.5KM

考题 下列程序运行的结果为: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);}} A. 4B. 5C. 6D. 6.1E. 9

考题 Math.round(11.5)等于(),Math.round(-11.5)等于()A.11,-11B.11,-12C.12,-11D.12,-12

考题 Math.Round()表示舍入到几位小数

考题 下面程序段的运行结果是() int i; float f=2.3f; double d=2.7; i=((int)Math.ceil(f))*((int)Math.round(d)); System.out.println(i);A.5B.4C.6D.9