java random function code example
Example 1: java random number
import java.util.Random;
Random rand = new Random();
int n = rand.nextInt(50);
n += 1;
Example 2: how to generate a random number in java
import java.util.Random;
Random rand = new Random();
int maxNumber = 10;
int randomNumber = rand.nextInt(maxNumber) + 1;
System.out.println(randomNumber);
Example 3: random java
import java.util.Random();
Random <name> = new Random();
<variable> = <name>.nextInt(<excuslive top limit>);
Example 4: funzione random in java
int n = (int) (Math.random() * 51);
Example 5: java random
int nombreAleatoire = Min + (int)(Math.random() * ((Max - Min) + 1));
Example 6: java random.nextint
public class Random {
public static void main(String[] args) {
Random random = new Random(long seed);
int bound = 5;
System.out.println(random.nextInt(bound));
}
}