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. 6,6
解答
Ans: B
解說: 無
| 
 | ||||||||||||||||||||
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
解說: 無
| 
 | ||||||||||||||||||||