标签:int and dom 随机数 rand 生成 ext div tin
闲话少叙
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.nextInt(n - m + 1) + m;
随机数是哟个场景
标签:int and dom 随机数 rand 生成 ext div tin
原文地址:https://www.cnblogs.com/adao21/p/13275286.html