Answers for "java while loops"

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
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

While looping in java

int number = 1;

while(number < 10){
  System.out.println(number);
  number += 1;
}
Posted by: Guest on July-26-2021
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
1

java while

while (condition) {
  // code block to be executed
}
Posted by: Guest on February-17-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language