Answers for "do while syntax in java"

3

while loop in java

// Java infinite while loop
import java.util.*;
public class WhileLoopExample
{
   public static void main(String[] args)
   {
      boolean value = true;
      while(value)
      {
         System.out.println("Infinite loop");
      }
   }
}
Posted by: Guest on November-21-2020
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
3

while loop in java

public class WhileLoopDemo
{
   public static void main(String args[])
   {
      int a = 1;
      while(a < 10)
      {
         System.out.println(a);
         a++;
         System.out.print("\n");
      }
   }
}
Posted by: Guest on November-21-2020
1

do statement java

10
9
8
7
6
5
4
3
2
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
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