67. 다음 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

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)
}
}



