W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
if語句由一個(gè)布爾表達(dá)式后跟一個(gè)或多個(gè)語句組成。
D編程語言中IF語句的語法是-
if(boolean_expression) {
/* statement(s) will execute if the boolean expression is true */
}
如果布爾表達(dá)式的計(jì)算結(jié)果為true,則執(zhí)行if語句中的代碼塊。如果布爾表達(dá)式的計(jì)算結(jié)果為false,則執(zhí)行if語句結(jié)束后(右大括號(hào)后)的第一組代碼。
d編程語言將任何非零和非NULL值假定為TRUE,如果它是零或NULL,則假定它為FALSE值。
import std.stdio;
int main () {
/* local variable definition */
int a=10;
/* check the boolean condition using if statement */
if( a < 20 ) {
/* if condition is true then print the following */
writefln("a is less than 20" );
}
writefln("value of a is : %d", a);
return 0;
}
編譯并執(zhí)行上述代碼時(shí),將生成以下結(jié)果-
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)系方式:
更多建議: