cj=60
if cj<60 then
MsgBox ("成绩不合格")
elseif cj>=60 and cj <80 then
MsgBox ("成绩为良")
elseif cj>80 then
MsgBox ("成绩为优秀")
end if
这是用vb的if语句来判断学生成绩。
cj=60
if cj<60 then
MsgBox ("成绩不合格")
elseif cj>=60 and cj <80 then
MsgBox ("成绩为良")
elseif cj>80 then
MsgBox ("成绩为优秀")
end if
这是用vb的if语句来判断学生成绩。