public class Else { public static void main(String[] args) { int hrs = 21; if (hrs < 21) ; else if (hrs < 18) ; { System.out.println(" Good morning; " + hrs); } } }