Java Tutorial Java Advanced Java References

Java if Keyword



The Java if keyword is used to create a block of conditional statements which executes only when the condition is true.

Syntax

if(condition){
  statements;
}        

Flow Diagram:

java If Loop

Example:

In the example below, the if code block is created which executes only when the variable i is divisible by 3.

public class MyClass {
  public static void main(String[] args) {
    int i = 15;
    if (i % 3 == 0)
      System.out.println(i+" is divisible by 3.");
  }
}

The output of the above code will be:

15 is divisible by 3.

❮ Java Keywords