1. 조건문 ( if-else, switch ) 심화 ✔️ if-else 문 심화 if-else를 활용하여 다양한 조건에 따른 결과 출력void main() { int score = 80; if (score >= 90) { print("A 학점"); } else if (score >= 80) { print("B 학점"); } else if (score >= 70) { print("C 학점"); } else { print("F 학점"); }} ✔️ switch 문 심화 switch문은 여러 개의 if-else를 간결하게 표현할 때 유용하다.void main() { String grade = "C"; switch (grade) { case "A": print..