java if

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
}if(a<b){
	//if a<b you are here
	//do something
}else if(a==b){
	//if a==b you are here
	//do something
}else{
	//if none above conditions are matched you are here
  	//do something
}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
}
Source

Also in Java: