Take today's date and time and show it in several different human-readable formats | Workbook p.33
Create a Java application called format-dates. The program grabs the current date and time, then prints it to the screen five different ways. There's one output per format — one line each, all printed in a single run of the program.
Display the current date and time in each of these formats:
04/22/202610:02 display in GMT time2026-04-22Wednesday 22, 2026Wednesday, Apr 22, 2026
Challenge: Add one more line that shows the time and date in your local time zone using the format 5:02 on 22-Apr-2026.
Workbook 3a, p.33 — Exercise: Format Dates