diff --git a/content/roadmaps/110-java/content/100-java-fundamentals/107-loops.md b/content/roadmaps/110-java/content/100-java-fundamentals/107-loops.md index d31a16aa6..d3718e404 100644 --- a/content/roadmaps/110-java/content/100-java-fundamentals/107-loops.md +++ b/content/roadmaps/110-java/content/100-java-fundamentals/107-loops.md @@ -1 +1,7 @@ -# Loops \ No newline at end of file +# Loops + +In Java and other programming languages, loops are used to iterate a part of the program several times. There are three types of loops in Java, `for`, `while`, and `do...while`. + +Free Content +What are loops in Java? + Loops in Java.