Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

조건 연산자 ? : 본문

Java/JAVA1

조건 연산자 ? :

빌드이너프 2023. 5. 17. 08:55

조건 연산자

 

조건식 ? 식1 : 식2

조건식의 평가결과가 true면 식1이, false면 식2가 연산결과가 된다

public class practice {
    public static void main(String[] args) {
        int result;

        result = (3 > 1) ? 3 : 1;

        System.out.println(result); // 3

		// if-else문
        if (3 > 1)
            result = 3;
        else
            result = 1;

        System.out.println(result); // 3
    }
}
public class practice {
    public static void main(String[] args) {
        int result;

        result = (3 < 1) ? 3 : 1;

        System.out.println(result); // 1

        // if-else문
        if (3 < 1)
            result = 3;
        else
            result = 1;

        System.out.println(result); // 1
    }
}

'Java > JAVA1' 카테고리의 다른 글

if 문  (0) 2023.05.17
복합 대입 연산자 +=  (0) 2023.05.17
문자열 비교 equals()  (0) 2023.05.16
비교 연산자 < > <= >= == !=  (0) 2023.05.16
나머지 연산자 %  (0) 2023.05.16