标题: [问题求助] [已解决]]VBS的inputbox返回值为何出错? [打印本页]
作者: batsealine 时间: 2013-5-8 15:46 标题: [已解决]]VBS的inputbox返回值为何出错?
本帖最后由 batsealine 于 2013-5-8 20:53 编辑
- Dim a,b,c
- a=InputBox("输入")
- b=InputBox("输入")
- c=InputBox("输入")
- If a=b+c Then MsgBox("yes") Else MsgBox("no")
复制代码
你输入3、2、1,总是返回no,为什么- Dim a,b,c
- a=3
- b=2
- c=1
- If a=b+c Then MsgBox("yes") Else MsgBox("no")
复制代码
这个会返回yes
作者: Demon 时间: 2013-5-8 16:15
http://demon.tw/programming/vbs-add-two-number.html
InputBox的返回值是字符串类型
作者: czjt1234 时间: 2013-5-8 18:01
哈哈,果然- Dim a,b,c
- a=InputBox("输入")
- b=InputBox("输入")
- c=InputBox("输入")
- If 0+a=0+b+c Then
- MsgBox("yes")
- Else
- MsgBox("no")
- end if
复制代码
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |