Answers for "how to exit from the loop and restart again main method in java"

1

java restart while loop

//use continue keyword

while (true) {
  //do stuff
  if (condition) continue; //goes to the top of while loop
  //do other stuff
}
Posted by: Guest on January-04-2021

Code answers related to "how to exit from the loop and restart again main method in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language