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