The while loop and the do-while loop are equivalent in their expressive power; in other words, you can rewrite a while loop using a do loop, and vice versa.
while循环和do - while循环在其表达能力上是等价的;换句话说,您可以用一个do循环重写一个while循环,反之亦然。
In a for statement, if the continuation condition is blank, the condition is assumed to be true.
在语句中,如果连续条件是空的,则假定该条件是正确的。
A variable declared in the for loop control can't be used after the loop exits.
在循环控制后,在for循环控制中声明的变量不能在循环退出后使用。
for(;;) is right.