Skip to main content

Conditional Statements: If - Else Statement

Java | If - Else Statement: If - else statement is one of the conditional statement. if checks the condition, if condition is true if block executes otherwise else block executes.

Syntax:                   if ( condition )
                               {
                                       // statements...
                                }
                                else
                                {
                                        // statements...
                                 }

Here is the Code:

  1. import java.io.*;

  2. class Main {
  3. public static void main (String[] args) {
  4.     int i = 1;
  5.     if( i % 2 == 0)
  6.     {
  7.         System.out.println("Even");
  8.     }
  9.     else
  10.     {
  11.         System.out.println("Odd");
  12.     }
  13.     int a = 1, b = 2;
  14.     int min;
  15.     if( a < b )
  16.     {
  17.         min = a;
  18.     }
  19.     else
  20.     {
  21.         min = b;
  22.     }
  23.     System.out.println("Min value is :" + min);
  24. }
  25. }

Output:
Odd
Min value is :1

Here is the Video: