I'm sorry, your car must be out of use at the moment for one month(翻译)
第1题:
A.shall
B. can
C.would
D. must
第2题:
编译和执行以下代码,输出结果是( )。 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
第3题:
W: Hey, if you can’t enjoy the music at a sensible volume, why not use earphones? I’m preparing for the speech contest.
M: Oh, sorry. I didn’t realize I’ve being bothering you all this time.
Q: What is the man probably doing?
短语怎么回答
是听力吧?这样我做不了。
第4题:
下面程序的输出结果是( )。 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
第5题:
下面程序的输出结果是( )。 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
第6题: