From dad6cbda6424ca79b9433efa037dd4158b23ec57 Mon Sep 17 00:00:00 2001 From: Drees Date: Mon, 9 Jan 2023 15:42:33 +0100 Subject: [PATCH] Roboter spricht --- Roboter/tpe/ui/UI.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Roboter/tpe/ui/UI.java b/Roboter/tpe/ui/UI.java index 341020b..1c0f936 100644 --- a/Roboter/tpe/ui/UI.java +++ b/Roboter/tpe/ui/UI.java @@ -155,7 +155,8 @@ private void menu() { while (next) { System.out.println("Geben Sie die " + i + ". Zahl Ihrer Folge ein." ); - int numNext = Integer.parseInt(sc.nextLine()); + num = Integer.parseInt(sc.nextLine()); + arrayNumbers.add(num); System.out.println("Wenn Sie eine weiter Zahl eingeben möchten, wählen Sie (1). Wenn Sie die Eingabe beenden möchten (2)."); int election = Integer.parseInt(sc.nextLine()); @@ -172,14 +173,15 @@ private void menu() { try { output = fs.robotInstructions(id, numbers); System.out.println("Der Roboter gibt folgendes aus: " + output); - } catch (RobotException e) { + } + catch (RobotException e) { System.out.println("Fehler!"); } } } - //testets + }