18 lines
620 B
Plaintext
18 lines
620 B
Plaintext
|
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();
|
||
|
}
|