System.out.println(Math.pow(2,10));的运行结果:
举一反三
- pow(2,10)和(2**10)的运算结果不一样. A: 正确 B: 错误
- 请看下面的程序代码,当 n 为( )值时,程序段将输出字符串 second。 [br][/br] switch(n) { [br][/br] case 0: System .out .println(“first”); [br][/br] case 1: [br][/br] case 2: System .out .println(“second”); break; [br][/br] default: System .out .println(“end”); [br][/br] }(2.0) A: 0 B: 1 C: 2 D: 以上都可以
- 下列程序的运行结果是()。Publicclasssun{Publicstaticvoidmain(Stringargs[]){intx=4,y=0;if(Math.pow(X,2)==16)y—x;if(Math.pow(X,2)<15)y—l/x;if(Math.pow(X,2)>15)y=(int)Math.pow(X,2)+1;system.out.println(y);}} A: 4 B: 17 C: 18 D: 0.25
- 已知直角三角形两直角边为12、14,求斜边。以下写法可行的有 A: math.sqrt(12 ** 2 + 14 ** 2) B: (12 ** 2 + 14 ** 2) ** 0.5 C: math.sqrt(pow(12,2) + pow(14,2)) D: math.sqrt(math.pow(12,2) + math.pow(14,2))
- 以下System.out.println(Math.sqrt(16)); System.out.println(Math.pow(3, 2)); System.out.println(Math.max(2.3, 4.5)); 代码中的输出正确的是