About 14,500,000 results
Open links in new tab
  1. Getting random numbers in Java - Stack Overflow

    I would like to get a random value between 1 to 50 in Java. How may I do that with the help of Math.random();? How do I bound the values that Math.random() returns?

  2. How do I generate random integers within a specific range in Java ...

    With Java 8 they introduced the method ints(int randomNumberOrigin, int randomNumberBound) in the Random class. For example if you want to generate five random integers (or a single one) in the …

  3. Generating a Random Number between 1 and 10 Java

    26 This will work for generating a number 1 - 10. Make sure you import Random at the top of your code.

  4. Generating Unique Random Numbers in Java - Stack Overflow

    74 With Java 8+ you can use the ints method of Random to get an IntStream of random values then distinct and limit to reduce the stream to a number of unique random values.

  5. Java generating non-repeating random numbers - Stack Overflow

    I want to create a set of random numbers without duplicates in Java. For example I have an array to store 10,000 random integers from 0 to 9999. Here is what I have so far: import java.util.Rand...

  6. Java: random long number in 0 <= x < n range - Stack Overflow

    Random class has a method to generate random int in a given range. For example: Random r = new Random(); int x = r.nextInt(100); This would generate an int number more or equal to 0 and less than...

  7. How Java random generator works? - Stack Overflow

    Feb 17, 2016 · Random r = new Random(); int result = r.nextInt(6); System.out.println(result); I want to know if there is a way to "predict" next generated number and how JVM determines what number to …

  8. Java Generate Random Number Between Two Given Values

    Mar 11, 2011 · Java doesn't have a Random generator between two values in the same way that Python does. It actually only takes one value in to generate the Random. What you need to do, then, is add …

  9. Get random boolean in Java - Stack Overflow

    Jul 13, 2012 · Random random = new Random(); //For 50% chance of true boolean chance50oftrue = (random.nextInt(2) == 0) ? true : false; Note: random.nextInt (2) means that the number 2 is the …

  10. Java random number with given length - Stack Overflow

    Mar 22, 2011 · I need to genarate a random number with exactly 6 digits in Java. I know i could loop 6 times over a randomizer but is there a nother way to do this in the standard Java SE?