请阅读下面的程序public class Example {public static void main(String[] args) {char c = 'B';switch(c) {case 'A':System.out.println("优");break;case 'B':System.out.println("良");break;case 'C':System.out.println("差");break;}}}
查看答案
请阅读下面的程序:public class Test { public static void main(String[] args) { int a = 0; int b = 0; for (int i = 1; i <= 5; i++) { a = i % 2; while (a-- >= 0) { b++; } } System.out.println(“a=” + a + “,b=” + b); } } 下列选项中,哪一个是正确的运行结果( )
A. a=2,b=-8
B. a=-2,b=8
C. a=-2,b=-8
D. a=2,b=8
请阅读下面的程序 class Test { public static void main(String args) { int a = 3; int b = 6; System.out.print(a==b); System.out.print(a System.out.print(a!=b); System.out.print(a>=b); }}下列选项中,哪个是程序的运行结果()
A. falsefalsetruefalse
B. falsefalsetruetrue
C. falsetruetruefalse
D. truefalsefalsetrue
阅读下列代码 System.out.println(“Hello” + 9 + 1); 下列选项中,哪个是正确的输出结果( )
A. Hello91
B. Hello10
Compilationfails
D. Anexceptionisthrownatruntime
阅读下列代码片段:
A. 123
B. 111
C. 121
D. 编译不通过