VBS(Visual Basic Script)是一种微软开发的脚本语言,用于 Windows 系统的管理和自动化任务。下面是一些 VBS 的基础语法实例讲解:
' 这是一个注释
Rem 这也是一个注释
Dim name
name = "John"
Dim age
age = 25
MsgBox TypeName(age) ' 输出 Integer
Dim score
score = 80
If score >= 60 Then
MsgBox "及格"
Else
MsgBox "不及格"
End If
Dim i
For i = 1 To 5
MsgBox i
Next
Function add(a, b)
add = a + b
End Function
MsgBox add(2, 3)
以上是一些 VBS 的基础语法实例讲解,希望对你有帮助。VBS 是一种非常强大的脚本语言,可以用于各种自动化任务和系统管理操作。