单项选择题
有如下程序 public class Sun { public static void main(String args[ ]) { int x=1,a=0,b=0; switch(x) { case 0:b++; case 1:a++; case 2: a++; b++; } System.out.println("a="+a+","+"b="+B) } }该程序的输出结果是( )。
A.a=2,b=1
B.a=1,b=1
C.a=1,b=0
D.a=0,b=0
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有如下程序 public class Test { int a,b; Test ( ) { a = 100; b = 200; } Test(int x, int y) { a = x; b = y; } public static void main(String args[]) { Test Obj1 = new Test(12,45); System.out.println( a = Obj1.a+ b = +Ob31.B) ; Test Obj1 = new Test(); System.out.println( a = Obj1.a+ b = +Obj1.B) ; } } 程序的运行结果为( )。
A.a=100 b=200 a=12 b=45
B.a=12 b=45 a=100 b=200
C.a=12 b=200 a=100 b=45
D.a=100 b=45 a=12 b=200
点击查看答案&解析
单项选择题
有以下程序 public class Sun { public static void main(string args[ ]) { int a, b; for(a=1, b=1; a<=100; a++) { if(b>=10} break; if (b%3 1) { b+=3; continue; } } System.cut.println(A) ; } } 执行后的输出结果是( )。
A.101
B.6
C.5
D.4
点击查看答案&解析
相关试题
下列Applet计算数组元素的和,并在窗口坐标...
下面ButtonFrame类创建了一个容器,包含有...
类名与接口名都采用 【14】 描述符,并...
当用户a刷新浏览器时,浏览器将会先卸载ApP...
在事件处理过程中,涉及的3类对象是事件、...