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 是一種非常強大的腳本語言,可以用于各種自動化任務和系統管理操作。