speak methode in Roboter verändert.

master
nikow 2023-01-03 18:31:05 +01:00
parent c696e79cbf
commit fbeda26182
1 changed files with 3 additions and 3 deletions

View File

@ -55,13 +55,13 @@ public abstract class Roboter implements Robot {
return null;
}
public String speak(int[] zahlen, RobotType robotType) throws RobotException {
if (robotType == RobotType.R2D2) {
public String speak(int[] zahlen) throws RobotException {
if (zahlen[0] < zahlen[zahlen.length - 1]) {
String ausgabe = "";
Stream.of(zahlen).forEach(n -> ausgabe = ausgabe + n + ",");
return ausgabe;
}
else if (robotType == RobotType.C3PO) {
else if (zahlen[0] < zahlen[zahlen.length - 1]) {
String ausgabe = "";
Stream.of(zahlen).forEach(n -> ausgabe = ausgabe + n + ";");
return ausgabe;