题目内容

请阅读下面的程序: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. 编译不通过

下列选项中,哪一个不能通过编译( )

A. byte a=1;
B. short b=100;
C. int c=1;
D. long d=8888888888;

答案查题题库