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
관리 메뉴

충분히 쌓여가는

if 문 본문

Java/JAVA1

if 문

빌드이너프 2023. 5. 17. 10:06

if 문

조건식이 true일 때, 괄호{} 안의 문장들을 수행

if (조건식) {

}

 

블럭{} 내의 문장이 하나뿐인 경우 {} 생략 가능

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

 

가능하면 {} 생략하지 않고 사용하기

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

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

If-else 문  (0) 2023.05.17
조건식  (0) 2023.05.17
복합 대입 연산자 +=  (0) 2023.05.17
조건 연산자 ? :  (0) 2023.05.17
문자열 비교 equals()  (0) 2023.05.16