while loop prompt java code example
Example: while loop in java
A while loop iterates a block of statements until condition is true. In a
while loop condition is executed first.
Syntax:
while(condition)
{
// code goes here
}
A while loop iterates a block of statements until condition is true. In a
while loop condition is executed first.
Syntax:
while(condition)
{
// code goes here
}