Answers for "while true 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
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
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
0

Java do while loop example

//do-while loop  
int i=1;  
do{  
System.out.println(i);  
i++;  
}while(i<=10);
Posted by: Guest on July-14-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language