SCJP 1.6版考題 003

出自 陳富國維基館
於 2013年3月30日 (六) 09:04 由 Ikk (對話 | 貢獻) 所做的修訂 (新頁面: 1. public class Test{ 2. public static void main(String[] args){ 3. int x = 5; 4. boolean b1 = true; 5. boolean b2 = false; 6. 7. if((x==4) && !b2) 8. ...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋
1. public class Test{
2.   public static void main(String[] args){
3.      int x = 5;
4.      boolean b1 = true;
5.      boolean b2 = false;
6.
7.      if((x==4) && !b2)
8.      System.out.print("1 ");
9.      System.out.print("2 ");
10.    if ((b2=true) && b1)
11.    System.out.print("3 ");
12.  }
13.}


What is the result?

   A. 2
   B. 3
   C. 1 2
   D. 2 3
   E. 1 2 3
   F. Compilation fails.
   G. An exception is thrown at runtime.


解答


Ans: D

解說: 無