repeat until java code example
Example 1: do statement java
do
{
statement(s);
} while(condition);
Example 2: do statement java
class DoWhileLoopExample {
public static void main(String args[]){
int i=10;
do{
System.out.println(i);
i--;
}while(i>1);
}
}
Example 3: do statement java
10
9
8
7
6
5
4
3
2