Java Random Int randInt(int min, int max)

Here you can find the source of randInt(int min, int max)

Description

rand Int

License

Open Source License

Declaration

public static int randInt(int min, int max) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.Random;

public class Main {
    private static Random random = new Random();

    public static int randInt(int max) { // Returns a random number below max.

        return random.nextInt(max);

    }/*from   w  ww . ja  va 2  s  .c o m*/

    public static int randInt(int min, int max) { // Returns a random number
        // between min and max.

        return min + random.nextInt((max + 1) - min);

    }
}

Related

  1. randInt(int min, int max)
  2. randInt(int min, int max)
  3. randInt(int min, int max)
  4. randInt(int min, int max)
  5. randInt(int min, int max)
  6. randInt(int min, int max)
  7. randInt(int min, int max)
  8. randInt(int min, int max)
  9. randInt(int min, int max)