How to print the season name of the year based on the month number in Swift

1 Answer

0 votes
func printSeason(month: Int) {
    switch month {
    case 12, 1, 2:
        print("Winter")
    case 3, 4, 5:
        print("Spring")
    case 6, 7, 8:
        print("Summer")
    case 9, 10, 11:
        print("Autumn")
    default:
        print("Invalid month number!")
    }
}

let month = 9

printSeason(month: month)



/*
run:

Autumn

*/

 



answered Sep 10, 2025 by avibootz
...