정보처리기사 2022년 2회 72번
From IT Wiki
Revision as of 01:01, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
과목: 프로그래밍 언어 활용
문제[edit | edit source]
72. 다음 JAVA 프로그램이 실행되었을 때의 결과는?
<br />public class ovr {<br /> public static void main(String[] args) {<br /> int a=1, b=2, c=3, d=4;<br /> int mx, mn;<br /> mx=a<b? b : a;<br /> if(mx==1) {<br /> mn=a>mx? b : a;<br /> }<br /> else {<br /> mn=b <mx? d : c;<br /> }<br /> System.out.println(mn);<br /> }<br />}<br />
- ① 1
- ② 2
- ③ 3
- ④ 4
풀어보기[edit | edit source]
정답[edit | edit source]
- 3번