nutze DateTimeFormatter

This commit is contained in:
Marc Koch 2020-04-20 15:01:12 +02:00
parent eeb1a8e5f1
commit 77dcf92fe0
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class Geburtstag {
jetzt = LocalDateTime.now();
System.out.println("Jetzt ist:");
System.out.println(jetzt.format(DateTimeFormatter.ofLocalizedDateTime(FormatStyle.MEDIUM)));
System.out.println(jetzt.format(DateTimeFormatter.ofLocalizedDateTime(FormatStyle.MEDIUM)) + " Uhr");
System.out.println();
int tageBisGeburtstag = 0;