math.round(11.5)和math.round(-11.5)的结果各是多少?
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
下列程序运行的结果为: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
下面程序段的运行结果是() 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