Klasse Würfel ändern

main
danai 2024-05-07 15:01:56 +02:00
parent 88575dcedd
commit b424564985
1 changed files with 1 additions and 6 deletions

View File

@ -82,7 +82,7 @@ public class Würfel {
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++) {
values[i] = keptDice.get(i);
}
@ -91,11 +91,6 @@ public class Würfel {
private void updateValues() {
for (int i = 0; i < DEFAULT_NUM_WÜRFEL; i++) {
System.out.println("Wurf " + (i + 1) + ": " + values[i]);