Learn Java Coding

Everything You Have To Know About Java

Loop

A loop is a action that repeats a part of the code

repeat loop java

*example*

3 different loops

  1. a for-loop repeats a number of times
  2. a while-loop, repeats until the condition is true.
  3. a do-while-loop, like a while loop, except that the loop will run one time and then check if the condition is still true. So, it will only check after it has run one time, and after it has run the second time, etcetera, etcetera.

 

An overview of the difference between the three loops in Java

Next Post

Previous Post

© 2024 Learn Java Coding