if else program in java

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
}int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
}int a=10;
if(a>5){
// block of code to be executed if the condition in true
}
else{
// block of code to be excuted if the condition in false
}int Java = 15
int Javascript = 13

if (Java > Javascript) {
  System.out.println("Java is greater than Javascript");
}
Source

Also in Java: