/*
* 求0-100的随机数
* 求1-100的随机数
* 求50-100的随机数
* 求80-120的随机数
* 求m-n的随机数,定义方法
*
* public int nextInt(int n) 生成指定区间的随机数 [0,n)
*/
public class Test {
public static void main(String[] args) {
Random random = new Random();
//求0-100的随机数
// for (int i = 0; i < 100; i++) {
// int nextInt = random.nextInt(101);
// System.out.println(nextInt);
// }
//求1-100的随机数
// for (int i = 0; i < 100; i++) {
// int nextInt = random.nextInt(100)+1;
// System.out.println(nextInt);
// }
//求50-100的随机数
// for (int i = 0; i < 100; i++) {
// int nextInt = random.nextInt(51);
// System.out.println(nextInt+50);
// }
//求80-120的随机数
// for (int i = 0; i < 100; i++) {
// int nextInt = random.nextInt(41);
// System.out.println(nextInt+80);
// }