Dim a
a = InputBox("隨便填")
a = Int(a)
Select Case a
Case Is > 5 And a < 10
MsgBox ("還行")
Case Is > 10 And a < 15
MsgBox ("壹般")
Case Is > 15 And a < 20
MsgBox ("可以了")
Case Is > 20 And a < 25
MsgBox ("無敵了")
Case Else
MsgBox ("做夢呢")
End Select
Dim a
a = InputBox("隨便填")
a = Int(a)
Select Case a
Case Is > 5 And a < 10
MsgBox ("還行")
Case Is > 10 And a < 15
MsgBox ("壹般")
Case Is > 15 And a < 20
MsgBox ("可以了")
Case Is > 20 And a < 25
MsgBox ("無敵了")
Case Else
MsgBox ("做夢呢")
End Select