这两天刚学VBS,今天终于在论坛管理人员的帮助下写出了一个最简单的VBS,请大家指教!- do
- a=inputbox("乘法按1,加法按2,除法按3,减法按4","计算器")
- if a="1" then
- b=inputbox("请输入第一个数字","乘法")
- c=inputbox("请输入第二个数字","乘法")
- d=b*c
- msgbox(d)
- end if
- if a="2" then
- e=inputbox("请输入第一个数字","加法")
- f=inputbox("请输入第二个数字","加法")
- g=int(e)+int(f)
- msgbox(g)
- end if
- if a="3" then
- l=inputbox("请输入第一个数字","除法")
- m=inputbox("请输入第二个数字","除法")
- n=l\m
- msgbox(n)
- end if
- if a="4" then
- h=inputbox("请输入第一个数字","减法")
- i=inputbox("请输入第二个数字","减法")
- j=h-i
- msgbox(j)
- end if
- loop
复制代码
|