📜  Do..While 循环 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:01.382000             🧑  作者: Mango

代码示例1
A do...while loop is similar to a while loop, except that a do...while loop is guaranteed to execute at least one time. 

Syntax : 
do {
   // Statements
}while(Boolean_expression);
Notice that the Boolean expression appears at the end of the loop, so the statements in the loop execute once before the Boolean is tested.

If the Boolean expression is true, the control jumps back up to do statement, and the statements in the loop execute again. This process repeats until the Boolean expression is false.