面试题答案
一键面试Dim score As Integer
score = Val(InputBox("请输入成绩分数"))
If score >= 60 Then
If score >= 70 Then
If score >= 80 Then
If score >= 90 Then
MsgBox "等级为'A'"
Else
MsgBox "等级为'B'"
End If
Else
MsgBox "等级为'C'"
End If
Else
MsgBox "等级为'D'"
End If
Else
MsgBox "等级为'E'"
End If