W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
它是控制語(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
a is less than 20
value of a is : 10
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: