mehrere Auswahlmöglichkeiten hinzugefügt

main
Arthur Kovis 2024-10-08 09:33:47 +02:00
parent b0a81ef2b9
commit 600a4c5be1
1 changed files with 37 additions and 0 deletions

37
Main Methode 100644
View File

@ -0,0 +1,37 @@
public static void main(String[] args) throws ParseException {
while (true) {
System.out.println("1. Einfahrt ins Parkhaus");
System.out.println("2. Zahlung der Parkgebühren");
System.out.println("3. Ausfahrt");
System.out.println("4. Parkhaus Verwaltung");
System.out.println("5. Verlassen");
int auswahl = scanner.nextInt();
scanner.nextLine();
switch (auswahl) {
case 1:
einfahrtParkhaus();
break;
case 2:
Zahlung();
break;
case 3:
ausfahrtParkhaus();
break;
case 4:
ParkhausVerwaltung(null);
break;
case 5:
System.exit(0);
}
}
}