Klasse Würfel ändern
parent
88575dcedd
commit
b424564985
|
@ -82,7 +82,7 @@ public class Würfel {
|
||||||
keptDice.add((int) (Math.random() * numSides) + 1);
|
keptDice.add((int) (Math.random() * numSides) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Конвертируем List<Integer> обратно в int[]
|
// Konvertieren List<Integer> zurück in int[]
|
||||||
for (int i = 0; i < keptDice.size(); i++) {
|
for (int i = 0; i < keptDice.size(); i++) {
|
||||||
values[i] = keptDice.get(i);
|
values[i] = keptDice.get(i);
|
||||||
}
|
}
|
||||||
|
@ -91,11 +91,6 @@ public class Würfel {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private void updateValues() {
|
private void updateValues() {
|
||||||
for (int i = 0; i < DEFAULT_NUM_WÜRFEL; i++) {
|
for (int i = 0; i < DEFAULT_NUM_WÜRFEL; i++) {
|
||||||
System.out.println("Wurf " + (i + 1) + ": " + values[i]);
|
System.out.println("Wurf " + (i + 1) + ": " + values[i]);
|
||||||
|
|
Loading…
Reference in New Issue