下列语句序列执行后,b的值为?int a=2, b=4;if( a < - - b ) a*=a;
查看答案
若a和b均是整型变量并已正确赋值,正确的switch语句为?
A. switch(a+b);{..............}
B. switch(a+b*3.0){..............}
C. switch a{..............}
D. switch(a%b){..............}
下列语句序列执行后,ch1的值为?char ch1=’A’,ch2=’W’;if(ch1 + 2 < ch2 ) ++ch1;
A. 'A'
B. 'B'
C. 'C'
D. B
在下面代码中x为何值时输出结果为“out2”?switch(x){case1:System.out.println("out1");break;case2:case3:System.out.println("out2");break;default:System.out.println("end");}
A. 1
B. 2
C. 3
D. default
请先阅读下面的代码。intx=1;inty=2;if(x%2==0){y++;}else{y--;}System.out.println("y="+y);上面一段程序运行结束时,变量y的值为_____________。