Answers for "how to use while loop in java"

6

while loop java

//runs as long as the condition is true
while(condition){
//do what you want in here
doStuff()
}
Posted by: Guest on May-04-2020
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
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
3

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

how to use while loop in java

int count = 10;
while(count < 10) {
  	System.out.println(count);
  	count++;
}

//while will run when if the condition is true
//if count is less then 10 the condition is true
//if count is more then 10 or equals to 10 it is false.
Posted by: Guest on October-26-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language