Answers for "do statement in java"

C++
1

do statement java

do
{
   statement(s);
} while(condition);
Posted by: Guest on March-17-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 "do statement in java"

Browse Popular Code Answers by Language