if boolean java
//FORMAT (Yes you can copy paste this, you lazy bimbo.) if (CONDITION) { // Do this if CONDITION true } else { // Do this if CONDITION false } // Example int x = 3; int y = 5; if (x < y) { System.out.println("True"); } else { System.out.println("False"); } //Output: True //Another example int x = 3; int y = 5; if (x < y) { System.out.println("Y is bigger"); } else if (x == y) { System.out.println("X and Y are the same"); } else { System.out.println("X is bigger"); } //Output: Y is bigger //Note that when using if right after an else is effectively the same is nesting the if inside that else. //Make sure you never do that and use "else if" instead.