D编程 if statement
2021-09-01 11:22 更新
if语句由一个布尔表达式后跟一个或多个语句组成。
if - 语法
D编程语言中IF语句的语法是-
if(boolean_expression) {
/* statement(s) will execute if the boolean expression is true */
}
如果布尔表达式的计算结果为true,则执行if语句中的代码块。如果布尔表达式的计算结果为false,则执行if语句结束后(右大括号后)的第一组代码。
d编程语言将任何非零和非NULL值假定为TRUE,如果它是零或NULL,则假定它为FALSE值。
if - 流程图
if - 示例
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;
}
编译并执行上述代码时,将生成以下结果-
a is less than 20;
value of a is : 10
以上内容是否对您有帮助:
← D编程 条件判断
更多建议: