固有频率是谐振频率吗:简单VB问题 谢谢大家

来源:百度文库 编辑:高考问答 时间:2024/04/28 05:27:58
Select Case a
Case Is >= 90 and <100
Print "1"
Case Is >= 80
Print "2"
Case Is < 70
Print "3"
End Select
这段代码的下面这句有错,应该怎么才能表示在90到100之间?
Case Is >= 90 and <100
Print "1"
谢谢了

用 Case 90 to 100 应该可以