当前位置: 首页 > 文档资料 > VB.Net 中文教程 >

If ... Then statement

优质
小牛编辑
138浏览
2023-12-01

它是最简单的控制语句形式,经常用于决策和改变程序执行的控制流程。 if-then语句的语法是 -

If condition Then 
[Statement(s)]
End If

其中, condition是布尔值或关系条件,Statement(s)是简单或复合语句。 If-Then语句的示例是 -

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

如果条件的计算结果为true,那么将执行If语句中的代码块。 如果condition的计算结果为false,那么将执行If语句结束之后的第一组代码(在结束结束之后)。

流程图 (Flow Diagram)

VB.Net if语句

例子 (Example)

Module decisions
   Sub Main()
      'local variable definition 
      Dim a As Integer = 10
      ' check the boolean condition using if statement 
      If (a < 20) Then
         ' if condition is true then print the following 
         Console.WriteLine("a is less than 20")
      End If
      Console.WriteLine("value of a is : {0}", a)
      Console.ReadLine()
    End Sub
End Module

编译并执行上述代码时,会产生以下结果 -

a is less than 20
value of a is : 10