ausfahrtParkhaus(){
parent
089b81d968
commit
628a9f6594
|
@ -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();
|
||||||
|
}
|
Loading…
Reference in New Issue