Java do while loop example
//do-while loop
int i=1;
do{
System.out.println(i);
i++;
}while(i<=10);
Java do while loop example
//do-while loop
int i=1;
do{
System.out.println(i);
i++;
}while(i<=10);
do statement java
class DoWhileLoopExample {
public static void main(String args[]){
int i=10;
do{
System.out.println(i);
i--;
}while(i>1);
}
}
do statement java
10
9
8
7
6
5
4
3
2
java while
while (condition) {
// code block to be executed
}
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
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us