22 lines
785 B
Java
22 lines
785 B
Java
import java.util.Random;
|
|
public class Aufgabe1 {
|
|
|
|
public static void main(String[] args) {
|
|
//Erstelle einen sechsseitigen Würfel in Java. Würfle einmal und gebe das Ergebnis aus.
|
|
Random rand = new Random();
|
|
int supremum = 6;
|
|
int wuerfel = rand.nextInt(supremum) + 1;
|
|
System.out.println("Würfel mit 6 Augen: " + wuerfel);
|
|
|
|
//Erstelle einen vier- / acht- / zehn- / zwölf-/ zwanzigseitigen Würfel in Java. Gebe auch das Ergebnis eines Wurfes aus.
|
|
int[] wuerfelAugen = {4, 8, 10, 12, 20};
|
|
String[] wuerfelnamen = {"Vierer Würfel: ", "Achter Würfel: ", "Zehner Würfel: ", "Zwölfer Würfel: ", "Zwanziger Würfel: "};
|
|
for (int i = 0; i < 5; i++) {
|
|
int wurf = rand.nextInt(wuerfelAugen[i]) + 1;
|
|
System.out.println(wuerfelnamen[i] + wurf );
|
|
|
|
}
|
|
}
|
|
|
|
}
|