W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
if語句由一個布爾表達(dá)式后跟一個或多個語句組成。
D編程語言中IF語句的語法是-
if(boolean_expression) {
/* statement(s) will execute if the boolean expression is true */
}
如果布爾表達(dá)式的計算結(jié)果為true,則執(zhí)行if語句中的代碼塊。如果布爾表達(dá)式的計算結(jié)果為false,則執(zhí)行if語句結(jié)束后(右大括號后)的第一組代碼。
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í)行上述代碼時,將生成以下結(jié)果-
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)系方式:
更多建議: