java利用Math累的random方法生成1到35区间的随机数,一组7个生成5组,分别存在5个Map类型的对象中
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/16 05:40:07
java利用Math累的random方法生成1到35区间的随机数,一组7个生成5组,分别存在5个Map类型的对象中
java利用Math累的random方法生成1到35区间的随机数,一组7个生成5组,分别存在5个Map类型的对象中
java利用Math累的random方法生成1到35区间的随机数,一组7个生成5组,分别存在5个Map类型的对象中
public static void main(String[] args) {
Map<Integer, Map<Integer, Integer>> lotteryTicketMap = new HashMap<Integer, Map<Integer,Integer>>();
Random r = new Random();
for(int i = 0 ; i < 5;i++){
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for(int j = 0 ; j < 7 ; ){
int num = r.nextInt(35)+1;
if(map.get(j)==null){
map.put(j, num);
j++;
}
}
lotteryTicketMap.put(i, map);
}
System.out.println(lotteryTicketMap);
}