do while java example
Example 1: java do while
do {
// loop content
} while (/* condition */);
Example 2: 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
}
Example 3: do statement java
class DoWhileLoopExample {
public static void main(String args[]){
int i=10;
do{
System.out.println(i);
i--;
}while(i>1);
}
}
Example 4: do statement java
10
9
8
7
6
5
4
3
2
Example 5: java while
while (condition) {
// code block to be executed
}