摘要: 最小值 最大值(整数)的随机数 方法1 (数据类型)(最小值+Math.random()*(最大值-最小值+1)) 例: (int)(1+Math.random()*(10-1+1)) //从1到10的int型随数 方法2 (类型)最小值+Math.random()*最大值 for (int i=0 阅读全文
posted @ 2018-03-19 11:29 lgp20151222 阅读(1026) 评论(0) 推荐(0) 编辑