OJCP(SCJP)題庫下載題庫

上一題
第8題 Given: 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.


答案:登入後觀看
難度: 困難
最佳解!
Jiao 幼兒園下 (2017/03/05)
Jiao 幼稚園下 (2017/03/05 17:49):^ ...


(內容隱藏中)
查看隱藏文字
2F
Mata 高三下 (2020/07/28)

static String o = "";


public static void main(String[] args) {

Long tail = 2000L;

Long distance = 1999L;

Long story = 1000L;

if((tail>distance) ^ ((story*2)==tail))

System.out.print("1"); 

if((distance+1 != tail) ^ ((story*2)==distance))

System.out.print("2"); 

}

}

第8題 Given: 1. public class Spock{ 2. ..-阿摩線上測驗