Nehoray

Java Statements


Introduction

Java provides a set of control flow statements that allow you to control the flow of your program. These statements help you make decisions, repeat tasks, and create flexible and dynamic programs. In this article, we'll explore the basics of Java control flow statements in a way that's easy for beginners to understand. Open your Java IDE software and let's practice together!


if-else Statements: Making Decisions

One of the fundamental control flow statements is the if-else statement. It helps your program make decisions based on certain conditions. Here's a simple example:

int age = 16;
              
              if (age >= 18) {
                  System.out.println("You are eligible to vote!");
              } else {
                  System.out.println("You are too young to vote.");
              }

In this example, the program checks if the variable age is greater than or equal to 18. If true, it prints a message about voting eligibility; otherwise, it prints a message for being too young.


Switch Statement: Handling Multiple Options

The switch statement is useful when you have multiple options and need to perform different actions based on the value of a variable:

int dayOfWeek = 3;
            
            switch (dayOfWeek) {
                case 1:
                    System.out.println("It's Monday!");
                    break;
                case 2:
                    System.out.println("It's Tuesday!");
                    break;
                // ... other cases
                default:
                    System.out.println("It's another day of the week.");
            }

Here, the program checks the value of dayOfWeek and executes the corresponding block of code. The break statement is crucial; without it, the program would continue executing the following cases.


for Loop: Repeating Tasks

The for loop is perfect for repeating tasks a specific number of times. Here's an example:

for (int i = 1; i <= 5; i++) {
              System.out.println("This is iteration " + i);
          }

In this loop, the program prints a message five times, changing the value of i with each iteration. The loop continues as long as the condition i <= 5 is true.

To better understand how the foor loop works, let's break it down into pieces. Here is a demonstration:

for(init; condition; iteration)
            	statement

Initialization (init): It is where you initialize the loop control variable. This variable is often used to track the loop's progress.

Condition: It is a boolean expression that determines whether the loop should continue or not. If the condition is true, the loop will continue; otherwise, it will exit.

Iteration: It is the operation that updates the loop control variable on each iteration, usually incrementing or decrementing it.


while Loop: Repeating Tasks with a Condition

The while loop repeats a task as long as a specified condition is true:

int count = 0;
        
        while (count < 3) {
            System.out.println("This is attempt number " + (count + 1));
            count++;
        }

In this example, the program prints a message three times, incrementing the count variable in each iteration.


do-while Loop: Ensuring Execution at Least Once

Similar to the while loop, the do-while loop repeats a task while a condition is true, but it ensures that the task is executed at least once:

int tries = 0;
      
      do {
          System.out.println("Attempt " + (tries + 1));
          tries++;
      } while (tries < 3);

Even if the condition is false initially, the loop body will execute at least once.


Conclusion

Understanding control flow statements is crucial for writing dynamic and flexible Java programs. With if-else statements for decision-making, switch statements for multiple options, and various loops for repeating tasks, you can create powerful and efficient applications.