fertig
parent
4939cd7266
commit
49e9876b17
10
Rennen.java
10
Rennen.java
|
@ -30,7 +30,7 @@ public class Rennen
|
|||
|
||||
public Rennschnecke durchfueheren(){
|
||||
while(true){
|
||||
this.lasseSchnecken.Kriechen();
|
||||
this.lasseSchneckenKriechen();
|
||||
if (this.teilnehmer1.getStrecke() > this.distanz){
|
||||
return this.teilnehmer1;
|
||||
}
|
||||
|
@ -42,6 +42,12 @@ public class Rennen
|
|||
}
|
||||
}
|
||||
}
|
||||
public String toString(){
|
||||
String ergebnis = "Zwischenstand bei" + this.name + ":";
|
||||
ergebnis += " " + this.teilnehmer1.toString();
|
||||
ergebnis += " " + this.teilnehmer2.toString();
|
||||
ergebnis += " " + this.teilnehmer3.toString();
|
||||
return ergebnis;
|
||||
|
||||
public String toString
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,19 +8,21 @@
|
|||
|
||||
public class Rennschnecke
|
||||
{
|
||||
|
||||
|
||||
private String name;
|
||||
private String rasse;
|
||||
private double max;
|
||||
private double strecke;
|
||||
|
||||
public Rennschnecke(String name, String rasse){
|
||||
Math.random();
|
||||
|
||||
this.max = Math.random() * 5;
|
||||
this.name =name;
|
||||
this.rasse = rasse;
|
||||
this.strecke = 0;
|
||||
}
|
||||
public void krieche (){
|
||||
|
||||
this.strecke += Math.random() * this.max;
|
||||
}
|
||||
|
||||
public double getStrecke(){//? aud Moodle
|
||||
|
|
Loading…
Reference in New Issue