Basisstruktur Würfel

main
Marco Angelo Palmieri 2024-05-05 19:29:41 +02:00
commit 00c56087a6
1 changed files with 18 additions and 0 deletions

18
Würfel.java 100644
View File

@ -0,0 +1,18 @@
import java.util.Random;
/**
* Diese Klasse repräsentiert einen einzelnen Würfel.
*/
public class Würfel {
private int augenzahl;
private final int MAX_AUGEN = 6;
private static final Random random = new Random();
/**
* Würfelt den Würfel und erzeugt eine neue Augenzahl zwischen 1 und MAX_AUGEN.
*/
public void würfeln() {
augenzahl = random.nextInt(MAX_AUGEN) + 1;
}
}