if statements in java code example

Example 1: if statement in java

int x = 3;

if (x<=3){
	System.out.println("Hello World");
}

else {
	System.out.println("Bye World");
}

Example 2: java if ? operator

if(condition){
	// block of code to be executed if the condition is true
} else {
	// block of code to be executed if the condition is false
}

Example 3: how to make if else statments in java

if (condition) {
  // code block
} else {
  // code block
}

Example 4: java else if statements

System.out.println("How many sattelites does JUPITER have ??");
		C = scan.nextInt();
		
		if (C == 79)
		{
			System.out.println("Congrats ! You got the Third  Question Right :)");
			points = points + 1;
		}
		
		else if (C != 79)
		{
			System.out.println("Sorry but your answer is wrong :(");
		}

Example 5: 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 6: if and in java

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