请问这条VB语句怎么写:如果a不是分数,Msgbox弹出信息“请输入0到100的数值”

2025-02-24 18:24:31
推荐回答(1个)
回答1:

If a < 0 Or a > 100 Then
MsgBox "请输入0到100的数值"
Else
'......
End If