public class ClassicSwitchExample { public static void main(String[] args) { String day = "Monday"; String typeOfDay; switch (day) { case "Monday": typeOfDay = "Start of work week"; break; case "Friday": typeOfDay = "End of work week"; break; case "Saturday": case "Sunday": typeOfDay = "Weekend"; break; default: typeOfDay = "Midweek day"; break; } System.out.println(day + " is a " + typeOfDay); } }