Java Random Int random(int min, int max)

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

Description

random

License

Open Source License

Parameter

Parameter Description
min a parameter
max a parameter

Return

a random int between min and max (min and max included)

Declaration

public static int random(int min, int max) 

Method Source Code

//package com.java2s;
/*//from   w w  w  . j a v  a 2 s  . c om
 *   Neon, a roguelike engine.
 *   Copyright (C) 2013 - Maarten Driesen
 * 
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * @param min
     * @param max
     * @return   a random int between min and max (min and max included)
     */
    public static int random(int min, int max) {
        return (int) (min + (max - min + 1) * Math.random());
    }
}

Related

  1. random(int maxValue)
  2. random(int min, int max)
  3. random(int min, int max)
  4. random(int min, int max)
  5. random(int min, int max)
  6. random(int min, int max)
  7. random(int n)
  8. random(int n)
  9. random(int numSamples)