Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 196 Bytes

File metadata and controls

13 lines (10 loc) · 196 Bytes

While loop in Java

while (condition) {
// code block to be executed
}


Example

while (i < 10) {
text += "The number is " + i;
i++;
}