这是我关于大学录取的代码,但它不会运行。
Public Class College_Admission
Private Sub btnResult_Click(sender As Object, e As EventArgs) Handles btnResult.Click
Dim score, rank As Integer
score = txtScore.Text
rank = txtRank.Text
Select Case score And rank
Case Is >= 90 and >= 25
lblResult.Text = "Congratulation, you can apply for this college!"
Case Is >= 89 and >= 50
lblResult.Text = "Congratulation, you can apply for this college!"
Case Is >= 70 and >= 75
lblResult.Text = "Congratulation, you can apply for this college!"
Case Else
lblResult.Text = "Sorry, you can not apply this college."
End Select
End Sub
End Class
这段代码有什么问题?