정보처리기사 2021년 2회 67번
From IT Wiki
과목: 프로그래밍 언어 활용
문제[edit | edit source]
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
풀어보기[edit | edit source]
정답[edit | edit source]
- 1번