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