产生某个区间的随机整数 int #Java
摘要:
int max = Integer.MAX_VALUE; int min = 1; Random random = new Random(); int s = random.nextInt(max)%(max-min+1) + min; 阅读全文
posted @ 2016-03-15 14:12 HowMacist 阅读(405) 评论(0) 推荐(0) 编辑
posted @ 2016-03-15 14:12 HowMacist 阅读(405) 评论(0) 推荐(0) 编辑