speak methode in Roboter verändert.
parent
c696e79cbf
commit
fbeda26182
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue