//IfElseExample.java – Demonstrates if-else control flow
public class IfElseExample {
public static void main(String args[]){
int i = 5;
if ( i < 10) {
System.out.println("i is less than 10");
}
else {
System.out.println("i is greater than or equal to 10");
}
}
}