📅  最后修改于: 2022-03-11 15:04:33.755000             🧑  作者: Mango
A while loop statement in Java programming language repeatedly executes a target statement as long as a given condition is true.
Syntax :
while(Boolean_expression) {
// Statements
}