VB.Net - If ... Then語句

2022-06-02 14:18 更新

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

If condition Then 
[Statement(s)]
End If

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

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

如果條件的計算結(jié)果為true,那么If語句中的代碼塊將被執(zhí)行。 如果條件計算結(jié)果為假,則第一組代碼在If語句結(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í)行時,它產(chǎn)生以下結(jié)果:
a is less than 20
value of a is : 10
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號