random() in java code example

Example 1: java random number

import java.util.Random;

Random rand = new Random();

// Obtain a number between [0 - 49].
int n = rand.nextInt(50);

// Add 1 to the result to get a number from the required range
// (i.e., [1 - 50]).
n += 1;

Example 2: random java

import java.util.Random();
Random <name> = new Random();
<variable> = <name>.nextInt(<excuslive top limit>);

Example 3: funzione random in java

int n = (int) (Math.random() * 51);

Example 4: java random

int nombreAleatoire = Min + (int)(Math.random() * ((Max - Min) + 1));

Tags:

Java Example