과목: 프로그래밍 언어 활용
67. 다음 자바 코드를 실행한 결과는?
<br />int x=1, y=6;<br />while (y--) {<br /> x++;<br />}<br />System.out.println("x=" x+"y=" y);<br />