과목: 프로그래밍 언어 활용
문제
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)
}
}
- ① 5, 5, 5
- ② 5, 6, 5
- ③ 6, 5, 5
- ④ 5, 6, 4
풀어보기
정답
- 1번
과목: 프로그래밍 언어 활용
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)
}
}