Ben Miller
0
Q:

java random.nextint

import java.util.Random;
public class Example {
   public static void main(String[] args) {
      Random rd = new Random(); // creating Random object
      System.out.println(rd.nextFloat()); // displaying a random float value between 0.0 and 1.0
   }
}
2
public class Random {
  
  public static void main(String[] args) {
    
    Random random = new Random(long seed);
    int bound = 5;
    
    System.out.println(random.nextInt(bound));
    
  }
  
}
/*
Returns a pseudorandom, uniformly distributed int value between
0 (inclusive) and
the specified value 5 (exclusive),
drawn from this random number generator's sequence.
0

New to Communities?

Join the community