ausfahrtParkhaus(){

main
Arthur Kovis 2024-10-08 09:12:14 +02:00
parent 089b81d968
commit 628a9f6594
1 changed files with 17 additions and 0 deletions

17
Commit 4 100644
View File

@ -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();
}