vbs显示缺少语句
text()
functiontext()
dim a
a=lnputBox("请大声说出我是猪!")
if a="我是猪"then
Msgbox"哈哈,我也觉得你是猪!",0,"恭喜"
else
Msgbox"不行,你要说我是猪!",0,"再来一次"
text()
end if
end function
两个简单的问题(你没有学过编程?)
1。functiontext()少空格了
正确的
function text()
2。a=lnputBox("请大声说出我是猪!")
单词拼错了,正确的
a=inputBox("请大声说出我是猪!")
热门标签: