VB.Net - If ... Then語(yǔ)句

2022-06-02 14:18 更新

它是控制語(yǔ)句的最簡(jiǎn)單形式,經(jīng)常用于決策和改變程序執(zhí)行的控制流程。 if-then語(yǔ)句的語(yǔ)法是:

If condition Then 
[Statement(s)]
End If

其中,condition是一個(gè)布爾或關(guān)系條件,Statement(s)是一個(gè)簡(jiǎn)單或復(fù)合語(yǔ)句。 If-Then語(yǔ)句的示例是:

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

如果條件的計(jì)算結(jié)果為true,那么If語(yǔ)句中的代碼塊將被執(zhí)行。 如果條件計(jì)算結(jié)果為假,則第一組代碼在If語(yǔ)句結(jié)束后(在結(jié)束If之后)將被執(zhí)行。

流程圖:



示例:

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
當(dāng)上述代碼被編譯和執(zhí)行時(shí),它產(chǎn)生以下結(jié)果:
a is less than 20
value of a is : 10
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)