97Vbs脚本练习

使用vscode编写

例子1:

dim a,b
a=10
b=20
msgbox a + b

例子2:

# 输入输出
dim str
str = inputbox("please input your name here","Title","hahahhahah")   # 第一个参数弹框提示信息,第二个弹框的标题,第三个输入框的默认值
msgbox str   # msgbox 相当于python的 print() 

例子3:

# 判断语句
dim str
str=msgbox("Do you love me ?", vbYesNo, "LOVE")
if str=vbYes then
	msgbox"I love you too, I think we will be happy!"
else
	msgbox"I will close your computer!"
	set sh=wscript.createobject("wscript.shell")
	sh.run"shutdown -s -t 300"
end if
    
有一个方法可以使你终止掉这种自动关机:
打开cmd,然后,输入:
shutdown -a
这样就会终止掉自动关机。也可以在任务管理器中进行关闭进程,

例子4:

# 循环语句   有好几种,这里介绍一种
do
	msgbox"Dead loop ! "
loop
posted @ 2023-03-11 00:10  __username  阅读(25)  评论(0编辑  收藏  举报

本文作者:DIVMonster

本文链接:https://www.cnblogs.com/guangzan/p/12886111.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。