行政英文怎么说:大家帮我看一下哪里错了?VBS的

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/29 15:25:05
dim a,b,c,d,e,f
a=inputbox("输入您的名字")
b=("008")
c=("007")
if a=b or a=c then
d=inputbox("呵呵")
else
Msgbox("错误")
e=("1")
f=("2")
elseif d=e then
Msgbox("怎")
d=inputbox("呵呵")
elseif d=f then
Msgbox("她")
d=inputbox("呵呵")
end if
2楼的,不行呀
若d=e 怎么没出现Msgbox("怎")

改成;
dim a,b,c,d,e,f
a=inputbox("输入您的名字")
b=("008")
c=("007")
if a=b or a=c then
d=inputbox("呵呵")
else
Msgbox("错误")
e=("1")
f=("2")
end if
if d=e then
Msgbox("怎")
d=inputbox("呵呵")
elseif d=f then
Msgbox("她")
d=inputbox("呵呵")
end if

f=("2")下边加
End if

i don’t konw