java if then code example

Example 1: else statement 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
}

Example 2: if and in java

if(x == 1 && y == 2){
  println("x = 1 and y = 2");
}

Example 3: if statement java

int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
}

Example 4: java if

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
}

Tags:

Java Example