switchcase1 자바(JAVA) 조건문(if / switch-case) if 문 기본 구조 : if (조건문) { 수행문1; } else { 수행문2; } int a = 10; if (a > 100) { System.out.println("a는 100 초과입니다"); } else { System.out.println("a는 100 이하입니다"); } 중첩 if-else문 (나이별 요금 계산) int age; int fee; String name; if (age 2022. 3. 7. 이전 1 다음