A.must have
B.couldn't have
C.ought to have
D.shouldn't have
第1题:
下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.but.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println ("default"); } } }
A.one
B.one, default
C.one, two, default
D.default
第2题:
下面程序的输出结果是( )。 Public class Sun { public static void main(String args[ ]) { int i = 9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } } }
A.default
B.defauolt, zero
C.error default clause not defined
D.no output displayed
第3题:
It is much easier to make a plan than it out.
A. carrying
B. carry
C. to carry
D. carried
14.答案为C。制定计划比实施计划容易的多。比较两事物时,对应的句型,遵循前后一致的原则。
第4题:
编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }
A.one,
B.one,two,
C.one,two,default
D.default
第5题:
(75)
A.Microsoft
B.illiterate
C.idiot
D.manufacturers
第6题:
执行下列Java语句:int x = 1; switch (x+1 ) { case 1: System.out.print("One" ); case 2: System.out.print("Two" ); case 3: System.out.print("Three" ); default: System.out.print("Error" ); } 显示器上将显示()。
A.One
B.Two
C.TwoThree
D.TwoThreeError