下列程序的运行结果是()。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
A: 4
B: 17
C: 18
D: 0.25
举一反三
- 设有如下程序: public class Sun { public static void main(String args[ ]) { int x,y; x=4; y=0; if(Math.pow(x,2)==16) y=x; if(Math.pow(x,2)<15) y=1/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
- 以下表达式中,有两个的计算结果是相同的,请挑选出来 A: 1 / sqrt(sin(x) * sin(x) + cos(y) * cos(y)) B: sqrt(pow(sin(x), 2) + pow(cos(y), 2)) C: pow(sin(x) * sin(x) + cos(y) * cos(y), 0.5) D: pow(pow(sin(x), 2) + pow(cos(y), 2), 2)
- Python标准库math中用来计算x的y次方的函数是pow(x,y)
- 【3 math函数 pow fabs 】 若doublex=3.0,y=2.0;则表达式pow(y,fabs(x))的值为【 】。
- Python标准库math中用来计算x的y次方的函数是pow(x,y)。 A: 正确 B: 错误