Visual Basic If…Then 语句

If…Then 是条件语句的最简单形式,经常用于判断条件和更改程序执行的流程。if-then 语句的语法为:

  1. If condition Then
  2. [Statement(s)]
  3. End If

其中,condition 是布尔或关系条件,Statement(s) 是简单或复合语句。If-Then 语句的一个例子如下:

  1. If (a <= 20) Then
  2. c= c+1
  3. End If

如果条件评估为 True,那么 If 语句内的代码块将被执行。如果条件计算结果为 False,那么将执行 If 语句结束后的第一组代码(在关闭 End If 之后)。


流程图


实例

  1. Module decisions
  2. Sub Main()
  3. 'local variable definition
  4. Dim a As Integer = 10
  5. ' check the boolean condition using if statement '
  6. If (a < 20) Then
  7. ' if condition is true then print the following '
  8. Console.WriteLine("a is less than 20")
  9. End If
  10. Console.WriteLine("value of a is : {0}", a)
  11. Console.ReadLine()
  12. End Sub
  13. End Module

结果如下:

  1. a is less than 20
  2. value of a is : 10

分类导航