Languages
[Edit]
EN

Java random number between 1 and 10 - both inclusive

6 points
Created by:
Joann-Calderon
383

Hi, today we would like to show you how to generate random number in range between 1 and 10. 

Truth be told the below code can be modified and used to generate random number between any range.

import java.util.Random;

public class RandomUtil {

    private static final Random RANDOM = new Random();

    public static int nextIntBetweenMinInclusiveMaxInclusive(int min, int max) {
        return RANDOM.nextInt((max - min) + 1) + min;
    }

    public static void main(String[] args) {

        for (int i = 0; i < 15; i++) {
            int randomNumber = nextIntBetweenMinInclusiveMaxInclusive(1, 10);
            
            System.out.println(randomNumber);
        }
    }
}

Output:

9
3
7
10
8
3
6
10
8
8
5
3
10
1
10

NOTE:

Each time click run this code we will see different results (statistically).

If we want to generate random int between different range we need to change min and max arguments we pass to the method:

Generate random int between 1 and 10:

nextIntBetweenMinInclusiveMaxInclusive(1, 10);

Generate random int between 5 and 30:

nextIntBetweenMinInclusiveMaxInclusive(5, 30);

And so on.

See also

  1. Java - random int number in both inclusive range with threads
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join