for and if loop in java code example
Example 1: java if ? operator
if(condition){
// 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 else java
public class TestIfElse {
public static void main(String[] args) {
int a = 5, b = 6;
if (a > b) {
System.out.println("a is greater");
} else {
System.out.println("b is greater");
}
}
}