java if else statement string code example
Example 1: 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
}
Example 2: if statement java
int x = 3;
if (x == 3) {
// block of code to be executed if the condition is true
}
Example 3: if statement with string java
if (var.equals("text"))