使用Random类生成指定范围的随机数

目的:要生成在[min,max]之间的随机整数

public class RandomTest {
public static void main(String[] args) {
int max=;
int min=;
Random random = new Random(); /*
random.nextInt(max)表示生成[0,max]之间的随机数,然后对(max-min+1)取模。
以生成[10,20]随机数为例,首先生成0-20的随机数,然后对(20-10+1)取模得到[0-10]之间的随机数,然后加上min=10,最后生成的是10-20的随机数
*/
int s = random.nextInt(max)%(max-min+) + min;
System.out.println(s);
}
}
上一篇:CMD以及运行命令整理


下一篇:AttributeError: module 'DBBase' has no attribute 'DBBase'