Please see below code for if else if condition  – 

				
					package practice;

public class IfElseif {

	public static void main(String[] args) {
		int time = 15;
		if (time < 10) {
		  System.out.println("Good morning.");
		} else if (time < 18) {
		  System.out.println("Good day.");
		} else {
		  System.out.println("Good evening.");
		}

	}

}

				
			

Explaination

Good day.


Scroll to Top