相关代码 |
|
条件判断语句嵌套结构 条件判断语句嵌套结构 ' 声明二个布尔变量,并初始化初始值 Dim blnA As Boolean = False, blnB As Boolean = True ' 在这里设置 blnA 变量和 blnB 变量的值 ' blnA = True : blnB = False If blnA = True Then Response.Write("blnA 变量的值为 True") If blnB = True Then Response.Write("blnB 变量的值为 True") Else Response.Write("blnB 变量的值为 False") End If Else Response.Write("blnA 变量的值为 False") End If %>
相关资源 |
|