java or in if code example

Example 1: 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 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 a or b

if(a || b){
  doSomething();
}

/*
For if queries: || (OR), && (AND), == (EQUALS), != (DOES NOT EQUAL)
				< (LESS THAN), > (GREATER THAN), <= (LESS THAN OR EQUAL TO),
                >= (GREATER THAN OR EQUAL TO)
*/