码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA从数组中取随机数

时间:2014-10-29 14:21:01      阅读:496      评论:0      收藏:0      [点我收藏+]

标签:ar   java   for   on   new   as   ui   class   c   

import java.util.Random;

public class SuiJiShu {
public static void main(String[] args) {
Random random=new Random();
int [] hong={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33};
int [] lan={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
for(int i=0;i<6;i++){
System.out.print(hong[random.nextInt(33)]+",");
}
System.out.println();
for (int i = 0; i < 1; i++) {
System.out.print(lan[random.nextInt(16)]+",");
}
}

}

JAVA从数组中取随机数

标签:ar   java   for   on   new   as   ui   class   c   

原文地址:http://www.cnblogs.com/duanya21977/p/4059167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!