Answers for "use while do 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
1

while loops java

while(booleanCondition){

// run your code here

}// while

do while loops will run once no matter what, but while loops will only run 
if the boolean condition is satisfied
Posted by: Guest on October-18-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language