Days of the week in java
i need help to print all the days of the week after the switch statements like maybe Monday Tuesday Wednesday Thursday Friday Saturday Sunday after the switch statement here is my code package daysoftheweek; public class DaysOfTheWeek { public static void main(String[] args) { int day = 3; switch(day){ case 1: System.out.println("Monday"); break; case 2: System.out.println("Tuesday"); break; case 3: System.out.println("Wednesday"); break; case 4: System.out.println("Thursday"); break; case 5: System.out.println("Friday"); break; case 6: System.out.println("Saturday"); break; case 7: System.out.println("Sunday"); break; } } }