select case 语句怎么判断在某两个值之间如题 我要把 if a> 3 and a =5 and a 16 and a = 85 Grade = "优秀 " Case Is > = 75 Grade = "良好 " Case Is > = 70 Grade = "中等 " Case Is > = 60 Grade = "及格 " end Select 有错误,在vb
来源:学生作业帮助网 编辑:六六作业网 时间:2025/02/03 03:10:09
select case 语句怎么判断在某两个值之间如题 我要把 if a> 3 and a =5 and a 16 and a = 85 Grade = "优秀 " Case Is > = 75 Grade = "良好 " Case Is > = 70 Grade = "中等 " Case Is > = 60 Grade = "及格 " end Select 有错误,在vb
select case 语句怎么判断在某两个值之间
如题
我要把
if a> 3 and a =5 and a 16 and a = 85
Grade = "优秀 "
Case Is > = 75
Grade = "良好 "
Case Is > = 70
Grade = "中等 "
Case Is > = 60
Grade = "及格 "
end Select
有错误,在vb中是正确的,但用asp里就有错误了
是asp
vbscript脚本
select case 语句怎么判断在某两个值之间如题 我要把 if a> 3 and a =5 and a 16 and a = 85 Grade = "优秀 " Case Is > = 75 Grade = "良好 " Case Is > = 70 Grade = "中等 " Case Is > = 60 Grade = "及格 " end Select 有错误,在vb
= 85
Grade = "优秀 "
Case a >= 75
Grade = "良好 "
Case a >= 70
Grade = "中等 "
Case a >= 60
Grade = "及格 "
case else
Grade = "不及格 "
end Select
response.Write(Grade)
%>