java or in if statement 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: 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 different ways
(condition) ? (what happens if true) : (what happens if false);
boolean party = friday ? play("what is love") : play("The Sound of Silence");