generated from hummel/Bank-System
Roboter spricht
parent
c3a9437fea
commit
dad6cbda64
|
@ -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
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue