java or condition code example
Example 1: java or
int num = 9;
if (num == 1 || num == 2) {
System.out.println("Nope");
}
if (num == 1 || num == 9) {
System.out.println("Yep");
}
Example 2: if and in java
if(x == 1 && y == 2){
println("x = 1 and y = 2");
}
Example 3: not equal java
// Int version
int i = 2;
if (i != 3) {}
// String version
String s = "a";
if(!s.equals("b")) {}
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)
*/