diff --git a/Commit 4 b/Commit 4 new file mode 100644 index 0000000..26e39c2 --- /dev/null +++ b/Commit 4 @@ -0,0 +1,17 @@ +public static void ausfahrtParkhaus() throws ParseException { + System.out.println(); + + System.out.print("Bitte geben Sie das Kennzeichen ein: "); + String kennzeichenEingabe = scanner.nextLine(); + + System.out.print("Bitte geben Sie ihre Ausfahrtszeit ein (im Format: dd.MM.yyyy, HH:mm): "); + String ausfahrtZeit = scanner.nextLine(); + SimpleDateFormat zeit = new SimpleDateFormat("dd.MM.yyyy, HH:mm"); + + if (ausfahrtZeit.isEmpty()) { + ausfahrtZeit = zeit.format(new Date()); + } + + System.out.println("Fahrzeug mit Kennzeichen " + kennzeichenEingabe + " hat das Parkhaus verlassen."); + System.out.println(); + }