요약: 1. if, else if... 등으로 나타내야 하는 구문이 5개 이상이라면 무조건 switch 구문이 낫다. 2. if, else if.... = switch 같은 역할 위의 switch구문은 아래 if, else if 구문과 의미가 같다. 월 ~ 일요일 switch문으로 출력 (1 ~ 7에 해당하는 각각의 요일 출력) ////Don't change this var aNumber = Int(readLine()!)! func dayOfTheWeek(day: Int) { switch day { case 1: print("Monday") case 2: print("Tuesday") case 3: print("Wednesday") case 4: print("Thursday") case 5: print(..