Answers for "dowhile loop java"

1

do while loop in java

do
{
	...
} while(condition);
Posted by: Guest on September-22-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

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language