โ Back to Miscellaneous
Question 154
Enum Day Basic
Enum Day Basic
Use a Java enum to represent days of the week and print the current day. Expected Output: Today is TUESDAY An enum defines a fixed set of named constants. The enum Day is already declared - your job is to assign the correct constant to a variable and print it. When printed, an enum automatically displays its constant name.
Expected Output:
Today is TUESDAY
Topics:
Miscellaneous
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.