D编程 do...while loop
2021-09-01 11:10 更新
与for和while循环不同,for和while循环在循环的顶部测试循环条件,而D编程语言中的do ... while循环在循环的底部检查其条件。
do ... while循环与while循环类似,不同之处在于,do ... while循环可确保至少执行一次。
do...while - 语法
D编程语言中do.while循环语法为
do {
statement(s);
} while( condition );
do...while - 流程图
do...while - 示例
import std.stdio;
int main () {
/* local variable definition */
int a=10;
/* do loop execution */
do{
writefln("value of a: %d", a);
a=a + 1;
}while( a < 20 );
return 0;
}
编译并执行上述代码时,将生成以下结果-
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19
以上内容是否对您有帮助:
更多建议: