java

Looping in Java

A loop statement allows the programmer to execute a statement or group of statements multiple number of times, based on the given conditions.

Let’s take a look 4 types of loops in Java.

  1. The While Loop

This repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.

//Syntax
while(expression){
//statements to be executed ...
}
//Print out all numbers from 0 to 100
public class Looper{
public static void main(String args[]){
int x = 0;
while(x<=100){
System.out.println(x);
x++;
System.out.println("\n"); //new line for vertical output
}
}
}

2. For Loop

A for loop is a repetition control structure that allows you to efficiently write a loop that needs to be executed a specific number of times.

A for loop is useful when you know how many times a task is to be repeated.

//Syntax
for(initialization; expression; iteration){
//Statements to be executed;
}

a. Initialization: this step is executed first and only once. It allows you to declare and initialize any loop control and it ends with a semi-color.

b. Expression: next, the expression is executed. If it is true, the body of the loop is executed, else the loop is terminated.

c. Iteration: if the expression is true, the iteration lets you update any loop control variables. This part can be left blank and without a semi-colon at the end.

//print all values from 0 to 100
public class ForLoop{
public static void main(String args[]){
for(int i=0; i<=100; i++){
System.out.println(i);
}
}
}

3. Do … While Loop

A do/while loop is similar to a while loop except that it is guaranteed to execute at least once.

//Syntax
do{
//statements to be executed
}while(expression);

The statement executes once before the expression is tested. If the expression is true, the control jumps back up to the do statement, and the statements in the loop execute again. The process repeats itself until the boolean expression is false.

//print all numbers from 1 to 100
public class DoWhile{
public static void main(String args[]){
int x = 0;
do{
System.out.println(x);
x++;
}while(x<=100);
}
}

4. Enhanced For Loop

Enhanced for loop is used to traverse through a collection of elements, including arrays.

//Syntax
for(declaration: expression){
//statements
}
public class EnForLoop{
public static void main(String args[]){
int [] numbers = {10, 20, 30, 40, 50};
for(int x : numbers){
System.out.println(x); //10, 20, 30, 40, 50
}
}
}

Recent Posts

How To Migrate from PostgreSQL to MySQL

Database migration is one of the most challenging tasks in software engineering. While both PostgreSQL…

13 hours ago

Hidden Gems Inside Modern JavaScript

Modern JavaScript isn’t just let, const, arrow functions, and promises anymore. Over the years, the language has…

1 day ago

Software Developer Pain Points Ranked: What Frustrates Developers the Most?

Software development is one of the most rewarding careers in technology, but it is also…

2 days ago

How to Print Documents in JavaScript

Printing a document in JavaScript usually means triggering the browser’s print dialog and controlling what…

4 days ago

CSS Display Cheatsheet

The display property controls how an element behaves in the layout and how its children are arranged. Access software…

1 week ago

10 JavaScript Habits Destroying Your Code

JavaScript is one of the most flexible programming languages ever created. That flexibility is powerful,…

1 week ago