"SCJP 1.6版考題 005" 修訂間的差異

出自 陳富國維基館
前往: 導覽搜尋
(新頁面: 10. int x = 0; 11. int y = 10; 12. do{ 13. y--; 14. ++x; 15. }while(x < 5); 16. System.out.print(x + "," + y); What is the result? A. 5,6 B. 5,5 C. 6,5 D....)
 
(無差異)

於 2013年3月30日 (六) 09:01 的最新修訂

10. int x = 0;
11. int y = 10;
12. do{
13.   y--;
14.   ++x;
15. }while(x < 5);
16. System.out.print(x + "," + y);


What is the result?

  A. 5,6
  B. 5,5
  C. 6,5
  D. 6,6


解答


Ans: B

解說: 無