if else condition java code example

Example 1: 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 2: if else java

public class TestIfElse {

    public static void main(String[] args) {
        int a = 5, b = 6;
        if (a > b) {
            System.out.println("a is greater");
        } else {
            System.out.println("b is greater");
        }
    }
}