目录
- 1. 公式
- 2. 导包
- 3. 编写代码
- 4. 输出运行结果
1. 公式
生成[a, b]区间的随机数:
random.nextInt((b - a) + 1) + a
2. 导包
import java.util.Random;
3. 编写代码
public class random_demo {
public static void main(String[] args) {
/*
* 随机数Random
* 需求:得到0-9之间的随机数
* 1. 导包
* 2. 创建随机数对象
* 3. 调用随机数函数
*
* 注意:nextInt(n):生成[0, n)之间的随机数
*
* 技巧:生成指定区间的随机数:
* [a, b]
* random.nextInt((b - a) + 1) + a
* */
Random random = new Random();
System.out.println("--------------------");
for (int i=0; i<10; i++){
int number = random.nextInt(27) + 65;
System.out.println("生成65-91之间的随机数:" + number);
}
}
}