Random(); 创造一个新的随机数生成器。
//随机数取值范围:(100) -> [0-100) -> 0~99
//随机数取值万能公式:(max - min + 1) + min;
int number = new Random().nextInt(bound:100) + 1;