Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public enum Den {
- PONDELOK, UTOROK, STREDA, STVRTOK, PIATOK, SOBOTA, NEDELA;
- public static void main(String[] args) {
- for (Den d : Den.values()) {
- System.out.println(d);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment