Answers for "do while loop jva"

4

what is a do while loop in java

do {
  //something you want to execute at least once
} while (someBooleanCondition);
Posted by: Guest on November-10-2020
0

do statement java

class DoWhileLoopExample2 {
    public static void main(String args[]){
         int arr[]={2,11,45,9};
         //i starts with 0 as array index starts with 0
         int i=0;
         do{
              System.out.println(arr[i]);
              i++;
         }while(i<4);
    }
}
Posted by: Guest on March-17-2020
0

Java while loop example

//while loop  
int i=1;  
while(i<=10){  
System.out.println(i);  
i++;  
}
Posted by: Guest on July-14-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language