SCJP 1.6版考題 004

出自 陳富國維基館
於 2013年3月30日 (六) 09:02 由 Ikk (對話 | 貢獻) 所做的修訂 (新頁面: 22. public void go(){ 23. String o = ""; 24. z: 25. for(int x=0; x<3; x++){ 26. for(int y=0; y<2; y++){ 27. if(x == 1) break; 28. if(x==2 && y...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋
22. public void go(){
23.    String o = "";
24.    z:
25.    for(int x=0; x<3; x++){
26.       for(int y=0; y<2; y++){
27.           if(x == 1) break;
28.           if(x==2 && y==1) break z;
29.           o = o + x + y;
30.       }
31.    }
32.    System.out.println(o);
33. }

What is the result when the go() method is invoked? 

  A. 00
  B. 0001
  C. 000120
  D. 00012021
  E. Compilation fails.
  F. An exception is thrown at runtime.


解答


Ans: C

解說: 無