how to write an if else statement in java code example

Example 1: else statement java

int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
} else {
  // block of code to be executed if the condition is false
}

Example 2: if else in java

import java.io.*;
public class JavaIfElse
{
   public static void main(String[] args)
   {
      int number = 15;
      // check if number is divisible by 2
      if(number%2 == 0)
      {
         System.out.println(number + " is even number");
      }
      else
      {
         System.out.println(number + " is odd number");
      }
   }
}

Example 3: if statement java

int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
}

Example 4: how to make if else statments in java

if (condition) {
  // code block
} else {
  // code block
}