摘要: 闲话少叙 Random random = new Random(); // 生成10-100内的随机数 int i = random.nextInt(100 - 10 + 1) + 10; // 生成 [m,n] 的数字 int n = 10; int m = 20; int i1 = random 阅读全文
posted @ 2020-07-09 18:21 adao 阅读(1481) 评论(0) 推荐(0) 编辑