Days of week

Report a typo

Declare an enum named DayOfWeek. It should include all days of the week in uppercase: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY.

The constants can be declared in any order.

Do not make the enum public.

Write a program in Java 17
// declare your enum here

public class Main {
public static void main(String[] args) {
for (DayOfWeek day : DayOfWeek.values()) {
System.out.println(day);
}
}
}
___

Create a free account to access the full topic