다음 JAVA 프로그램을 실행했을 때의 출력 결과는?
public class Operator {
public static void main(String[] args) {
int x=5, y=0, z=0;
y = x++;
z = --x;
System.out.print(x + ", " + y +", " +z);
}
}- 15, 5, 5
- 25, 6, 5
- 36, 5, 5
- 45, 6, 4
꿈라CBT