SCJP 1.6版考題 008

出自 陳富國維基館
於 2013年3月30日 (六) 08:57 由 Ikk (對話 | 貢獻) 所做的修訂 (新頁面: 1. public class Spock{ 2. public static void main(String[] args){ 3. Long tail = 2000L; 4. Long distance = 1999L; 5. Long story = 1000L; 6. if((tail>distance) ^...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋
1. public class Spock{
2.   public static void main(String[] args){
3.     Long tail = 2000L;
4.     Long distance = 1999L;
5.     Long story = 1000L;
6.     if((tail>distance) ^ ((story*2)==tail))
7.     System.out.print("1");
8.     if((distance+1 != tail) ^ ((story*2)==distance))
9.     System.out.print("2");
10.   }
11. } 


What is the result?

   A. 1
   B. 2
   C. 12
   D. Compilation fails.
   E. No output is produced.
   F. An exception is thrown at runtime.

解答


Ans: E

解說: 無