Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Läßt sich ja ganz hervorragend ablesen...
Mal abgesehen von der 50 (die mit dieser Kombination nicht möglich ist), wenn die Würfel ideal wären (was w7 sicherlich nicht sind, auch wenn uns der Hersteller da sicherlich etwas anderes erzählen möchte), sollte es nicht der Fall sein das da irgendein Ergebniss besonders hervorstechen sollte.@ Xorn: Da ist ein statistischer Fehler drin. Du kommst, wenn du so ein paar (millionen) mal würfelst extrem viel häufiger auf 25 als auf 50 oder auf 1.
import java.util.Random;
public class MyDie {
public final static int sides = 50;
public final static int rolls = 6;
public static void main(String[] args) {
Random r = new Random();
for(int i = 0; i < rolls; i++)
System.out.println(r.next(sides) + 1);
}
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.