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

loop while in java

while(i < 5) //while i < 5 stay in the loop
{
  System.out.print(i);
  i++;
}
/*
	do someting
	change variable
    call methods
    etc...
*/
Posted by: Guest on March-05-2020
0

while with boolean injava

boolean b = false;
while(!b) {
System.out.println(b);
b = !b;
}
Posted by: Guest on July-21-2021
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
2

while loop in java

// Iterate Array using while loop
public class ArrayWhileLoop
{
   public static void main(String[] args) 
   {
      int[] arrNumbers = {2, 4, 6, 8, 10, 12};
      int a = 0;
      System.out.println("Printing even numbers: ");
      while(a < 6)
      {
         System.out.println(arrNumbers[a]);
         a++;
      }
   }
}
Posted by: Guest on November-21-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language