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

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/12 09:42:55

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)
%>

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 vb select case 这个语句? select case 语句里 可以再套select case sql case when请教请教sql中case when 判断语句select 姓名,工龄,(case when (工龄>= '35') then 90%when (工龄>='30' and 工龄='20' and 工龄='10' and 工龄 select case x结构中,描述判断条件3 switch-case语句的流程图 怎么画 case when then else end 能用在条件判断上么比如select * from app a where --在这加case when 可以么?select * from app a where case when a.id = 1 then a.name = '22' else a.name = '33' 程序中的case语句如何用判断框图表示 Select Case语句中case不起作用啊~我建了三个单项框~但是只有第一个起作用~是不是case 1 case 2 case 这些标签的数字写错了?那个事管理这个的啊? Select Case语句到底是什么意思?Private Sub C1_Click(Index As Integer)Select Case IndexCase 1Timer1.Enabled = FalseCase 0Timer1.Enabled = TrueEnd SelectEnd Sub这段的index是神马?case1、0又是神马? free pascal case语句的格式问题(谢谢,在free pascal 的case语句中,如果想在case语句中直接输出,应该怎么样的格式呢?例如 case sum fo1:1:=writeln('zhou'); 2:2:=writeln('zhao');writeln(1,2);这样的格式应该怎么写? sql case when then ...虚心求教select case salarywhen 5000 then '高薪'when 4500 then '中薪'when 3500 then '中低薪'else 'null'end as '工资等级' from telenolist我想统计各个工资级别的人数 那个count(*)应该放在语句的哪 case when 语句怎么写,举个例子 matlab里的case语句多少到多少怎么写 在数据库中,查找日期时比较的语句怎么写呢select * from 进货记录表 where 日期 > '2010-9-4 00:00:00' and 日期 能否在from 之后加 case when 语句? 能不能在Where 后面用Case when 语句 matlab case语句需要在每个case后面加break吗,类似c那样