자격증/OCJP_ExamB
QUESTION 59
IT grow.
2018. 7. 13. 23:20
반응형
QUESTION 59Given:int x = 0;int y = 10;do { y--;++x;}while (x < 5);System.out.print(x + "," + y);What is the result?A. 5,6B. 5,5C. 6,5D. 6,6Solution : B
반응형