有以下计算公式:若程序前面已在命令行中包含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);
有以下计算公式:若程序前面已在命令行中包含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);
相关考题:
有以下计算公式:若程序前面已在命令行中包括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);
有以下计算公式若程序前面已在命令行中包含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);
有以下计算公式若程序前面已在命令中包含math.h文件,不能够正确计算上述公式的程序段是( )。A.if(x=0)y=sqrt(x);B.y=sqrt(x) if(x0)y=sqrt(0x);C. else y=sqrt(-x);D x==O)y=sqrt(x); If(x=0? x:0x);
有以下计算公式若程序前面已在命令中包含math.h文件,不能够正确 计算上述公式的程序段是( )。A.if(x=0)y=sqrt(x); else y=sqrt(-x);B.y=sqrt(x) if(x0)y=sqrt(0x);C.if(x=O)y=sqrt(x); If(xO)y=sqrt(0x);D.y=sqrt(x=0? x:0x);
下面程序段的输出结果是______。 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>yB.x=yC.x<yD.编译错误
有以下计算公式y=-x的平方根 x0若程序前面已在命令中包含math.h文件,不能正确计算上述公式的是( )。A.if(x=0) y=sqrt(x);B.y=sqrt(x);else y=sqrt(-x); if(x0) y=sqrt(-x);C.if(x=0) y=sqrt(x);D.y=sqrt(x=0?x:-x);if(x0) y=sqrt(-x);
下面程序段判断x是否为素数。则空格处应该填写的语句分别为 ________。 scanf(“%d”,x); y=(int)sqrt(x); for (int j=2; j<=y; j++) if (_______) ________; if (j<=x) printf(“是素数”); else printf(“不是素数”);A.x/j==0, return;B.y%j==0, break;C.y/j==0, break.D.x%j==0, j=x+1;