Here you can find the source of randInt(int min, int max)
Parameter | Description |
---|---|
min | a parameter |
max | a parameter |
public static int randInt(int min, int max)
//package com.java2s; //License from project: Open Source License import java.util.Random; public class Main { private static final Random r = new Random(); /**//from w w w . j a v a2 s. c o m *Returns a random integer between min and max. * @param min * @param max * @return */ public static int randInt(int min, int max) { int randomNum = r.nextInt((max - min) + 1) + min; return randomNum; } }