Answers for "how to use do while loop in java for restarting or breaking the program"

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 use do while loop in java for restarting or breaking the program"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language