Python标准库math中用来计算x的y次方的函数是pow(x,y)。
第1题:
下列关于部分函数依赖的叙述中,( )是正确的?
A)若X→Y,且存在Y的真子集Y ’,X→Y ',则称Y对x部分函数依赖
B)若X→Y,且存在Y的真子集Y‘,X→Y ',则称Y对x部分函数依赖
C)若X→Y,且存在X的真子集X',X'→Y,则称Y对x部分函数依赖
D)若X→Y,且存在X的真子集X',X'→Y,则称Y对x部分函数依赖
第2题:
有以下计算公式:若程序前面已在命令行中包含math.h文件,不能够正确计算上述公式的程序段是( )。
A.if(x>=0) y=sqrt(x); else y=sqrt(-x);
B.y=sqrt(x); if(x<0) y=sqrt(-x);
C.if(x>=0) y=sqrt(x); if(x<0) =sqdrt(-x);
D.y=sqrt(x>=0?x:-x);
第3题:
以下程序中,函数fun的功能是计算x2(上标)-2x+6,主函数中将调用fun函数计算:
y1=(x+8)2(上标)-2(x+8)+6
y2=sin2(上标)(x)-2sin(x)+6
请填空。
include "math.h"
double fun(double x){ return (x*x-2*x+6);}
main()
{ double x,y1,y2;
printf("Enter x:"); scanf("%1f",&x);
y1=fim([ ]);
y2=run([ ]);
printf("y1=%1f,y2=%1f\n",y1,y2);
}
第4题:
有以下计算公式
若程序前面已在命令中包含math.h文件,不能够正确
计算上述公式的程序段是( )。
A.if(x>=0)y=sqrt(x);
B.y=sqrt(x) if(x<0)y=sqrt(0x);
C. else y=sqrt(-x);
D x="">=O)y=sqrt(x); If(x
=0? x:0x);
第5题:
下面程序段的输出结果是( )。 publicclassTest{ publicstaticvoidmain(Stringargs[]){ intx,y; x=(int)Math.sqrt(5)/2+(int)Math.random()*5/2; Y=(int)Math.sqrt(3)/2+(int)Math.random()*3/2; if(x>y) System.out.println9"x>y"); elseif(x==y) System.out.println("x=y"); else System.out.println("x<y"); } }
A.x>y
B.x=y
C.x<y
D.编译错误
第6题:
下列程序的运行结果是( )。 Public class sun { Public static void main(String args[]) { int x=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
第7题:
若有代数式“ex+y2+y/x”,则正确的C语言表达式是( )
A.ex+y*y+y/x
B.exp x+pow(y,2)+y/x
C.exp(x)+pow(y,2)+y/x
D.ex+y2+y/x
第8题:
第9题:
若y2(x)是线性非齐次方程y′+P(x)y=Q(x)的解,y(x)是对应的齐次方程y′+P(x)y=0的解,则下列函数中哪一个是y′+P(x)y=Q(x)的解()?
第10题:
第11题:
y=Cy1(x)+y2(x)
y=y1(x)+Cy2(x)
y=C[y1(x)+y2(x)]
y=Cy1(x)-y2(x)
第12题:
y=cy1(x)+y2(x)
y=y1(x)+c2y2(x)
y=c[y1(x)+y2(x)]
y=c1y(x)-y2(x)
第13题:
下列程序的运行结果是( )。 Publicclasssun { Publicstaticvoidmain(Stringargs[]) { intx=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(x92)+1; system,out.println(y); } }
A.4
B.17
C.18
D.0.25
第14题:
有以下计算公式若程序前面已在命令行中包含math.h文件,不能够正确计算上述公式的程序段是
A.if(x>=0 y=sqrt(x); else y=sqrt(-x);
B.y=sqrt(x) if(x<0)y=sqrt(-x);
C.if(x>=0) y=sqrt(x); if(x<0)y=sqrt(-x);
D.y=sqrt(x>=0?x:-x);
第15题:
设有如下程序: 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
第16题:
有以下计算公式若程序前面已在命令中包含math.h文件,不能够正确 计算上述公式的程序段是( )。
A.if(x>=0)y=sqrt(x); else y=sqrt(-x);
B.y=sqrt(x) if(x<0)y=sqrt(0x);
C.if(x>=O)y=sqrt(x); If(x<O)y=sqrt(0x);
D.y=sqrt(x>=0? x:0x);
第17题:
下面程序段的输出结果是______。 public class Test{ public static void main(String args[ ]){ int x,y; x=(int)Math.sqrt(5/2)+(int)Math.random( )*5/2; y=(int)Math.sqrt(3/2)+(int)Math.random( )*3/2; if(x>y) System.out.println("x>y"); else if(x==y) System.out.println("x=y"); else System.out.println("x<y"); } }
A.x>y
B.x=y
C.x<y
D.编译错误
第18题:
A.math.ceil()
B.math.fabs()
C.math.pow(x,y)
D.math.trunc(x)
第19题:
有以下计算公式y=
-x的平方根 x<0
若程序前面已在命令中包含math.h文件,不能正确计算上述公式的是( )。
A.if(x>=0) y=sqrt(x);
B.y=sqrt(x);
else y=sqrt(-x); if(x<0) y=sqrt(-x);
C.if(x>=0) y=sqrt(x);
D.y=sqrt(x>=0?x:-x);
if(x<0) y=sqrt(-x);
第20题:
第21题:
Java语言中的方法Math.pow(x,y)为求x的()次幂的值。
第22题:
第23题:
sin
cos
sqrt
min
第24题:
y=cy1(x)+y2(x)
y=y1(x)+c2y2(x)
y=c[y1(x)+y2(x)]
y=c1y(x)-y2(x)