亮亮正驾驶汽艇在亚洲与非洲的分界线上航行,他现在的位置是[ ]
A.苏伊士运河
B.巴拿马运河
C.白令海峡
D.土耳其海峡
答案:A
原保险人
下面程序段的输出结果是( )。 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.编译错误