if else statments in java code example
Example 1: how to make if else statments in java
if (condition) {
// code block
} else {
// code block
}
Example 2: 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
}