vbscript 语言基础三

how to use If Else and Select Case

get familiar with Select Case

Dim curr 
curr =3
Select Case curr
 Case 1 
    WScript.Echo "betwwen 1 and 5 , inclusive"
 Case 2
    WScript.Echo "betwwen 6 and 8 , inclusive"    
 Case 3
    WScript.Echo "Equal to 9 or 10"
 Case Else 
    WScript.Echo "Not between 1 and 10, inclusive"
End Select

get familiar with If Else


Option Explicit
Dim currTotal
currTotal=519
' get familiar with if and else
''''''''''''''''''''''''''''''''''''''''''
If currTotal=0 Then
  WScript.Echo "the total is zero"
ElseIf CurrTotal<2 Then 
  Wscript.Echo "the total is smaller than two"
Else
  Wscript.Echo "the total is bigger than two"
End If
''''''''''''''''''''''''''''''''''''''''''
' get familiar with if not

If Not currTotal=400 Then 
  Wscript.Echo "the total is not equal 400"
End If



你可能感兴趣的:(VBScript,select,elseif)