14.现有: 1. class Test2 f 2.public static void main(String [] args) { 3. boolean X= true; 4. boolean y=false; 5. short Z=20; 6. 7.if((x==true) && (y=true)) z++; 8. if((y==true) || (++z==22)) z++; 9. 10. System. out .println( "z="+z); 11. } 12. } 结果是什么? A.Z=21 B. z=22 C. z=23 D. Z= 24
自己做感觉是C 老师给的答案是B 求大神解析
|