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.
Random random = new Random();
int xRdm = random.nextInt(y-x) + x;
um genau zu sein (random between x - y):
Java:Random random = new Random(); int xRdm = random.nextInt(y-x) + x;