2013年11月16日 星期六

條件判斷分數

 Select TextBox1.Text
            Case Is < 100 And TextBox1.Text >= 90
                label2 = "您的分數為甲"
            Case TextBox1.Text < 90 And TextBox1.Text >= 80
                label2 = "您的分數為乙"
            Case TextBox1.Text < 80 And TextBox1.Text >= 70
                label2 = "您的分數為丙"
            Case TextBox1.Text < 70 And TextBox1.Text >= 60
                label2 = "您的分數為丁"
            Case TextBox1.Text < 60 TextBox1.Text >= 0
                label2 = "您的分數為戍"

沒有留言: