脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - VBS中Select CASE的其它用法

VBS中Select CASE的其它用法

2019-11-21 14:42脚本之家 VBS

VBS中Select CASE的其它用法

  1. marr=20 
  2. select case true 
  3.  case marr<12 
  4.   response.write "小于12" 
  5.  case marr>12 
  6.   response.write "大于12" 
  7.  case marr=12 
  8.   response.write "==" 
  9. end select    
  10. 还可以这样用 
  11. case marr> 7 and marr<12 

延伸 · 阅读

精彩推荐