本帖最后由 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 |