From 628a9f659467206d1959bfa6aac19a0b3cbd0736 Mon Sep 17 00:00:00 2001 From: Arthur Kovis <3013016@stud.hs-mannheim.de> Date: Tue, 8 Oct 2024 09:12:14 +0200 Subject: [PATCH] ausfahrtParkhaus(){ --- Commit 4 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Commit 4 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(); + }