部分程序,判断输入的月份是哪一个季度
        Select Case month
              
            Case "3"                
            Case "4"
            Case "5"
                outcome = month & "月是春季。"
                
            Case "6"
            Case "7"
            Case "8"
                outcome = month + "月是夏季。"
                
            Case "9"
            Case "10"
            Case "11"
                outcome = month + "月是秋季。"
                
            Case "12"
            Case "1"
            Case "2"
                outcome = month + "月是冬季。"
            Case Else
                outcome = "居然有" + month + "月?你歷害!"
        End Select
    End Sub
只有在month变量等于5、8、11、2时才会有输出
我不想在没一个case后都写同样的语句,有什么办法吗?