📅  最后修改于: 2022-03-11 14:44:58.323000             🧑  作者: Mango
//Executes a statement repeatedly, until the value of condition becomes false.
//The test takes place before each iteration
while(condition) {
statement
}