
public class DecisionConstruct {

	public static void main(String[] args) {
		
		int x = 50;
		
		// if statement
		if (x == 5) {
			System.out.println("x is 5");
		}
		
		// if-else statement
		
		// if-else if-else statement
	}

}
