java if statement operator code example
Example 1: condition operator in java
b = (a == 1) ? 20: 30;
Example 2: if statement java
int x = 3;
if (x == 3) {
// block of code to be executed if the condition is true
}
b = (a == 1) ? 20: 30;
int x = 3;
if (x == 3) {
// block of code to be executed if the condition is true
}