Kommentar hinzugefügt

master
andre 2024-06-23 22:44:35 +02:00
parent dfc1981aee
commit 1aa15e069c
1 changed files with 4 additions and 3 deletions

View File

@ -16,8 +16,7 @@ public class TestPacket {
//HashMap um Pakete später benennen zu können
Map<String, Paket> pakete = new HashMap<>();
while(!right) {
//Auswahl der Packstation-Konstruktoren
System.out.println("* Packstation wählen *");
@ -81,6 +80,8 @@ public class TestPacket {
//Nutzereingabe zur Benennung des Objekts
System.out.print("Paketbezeichnung: ");
String paketname = sc.nextLine();
//Übernimmt Paket *Variablenname* = new Paket(String empfaenger, String adresse)
pakete.put(paketname, new Paket(name, adresse));
try {
@ -120,7 +121,7 @@ public class TestPacket {
int reihe = sc.nextInt();
//Ausgabe der Information
System.out.println(ps.informationZumBoxenplatz(spalte, reihe));
System.out.println("\n" + ps.informationZumBoxenplatz(spalte, reihe));
break;
case 4: