class WhileLoopExample {
public static void main(String[] args){
int i=10;
while(i>1){
System.out.println(i);
i--;
}
}
}
10
9
8
7
6
5
4
3
2
class WhileLoopExample2 {
public static void main(String[] args){
int i=10;
while(i>1)
{
System.out.println(i);
i++;
}
}
}
while (true){
statement(s);
}
class WhileLoopExample3 {
public static void main(String[] args){
int arr[]={2,11,45,9};
//i starts with 0 as array index starts with 0 too
int i=0;
while(i<4){
System.out.println(arr[i]);
i++;
}
}
}