摘要: public class SortTest {/** * 获取随机数 * @return */public static int[] getRandom(){Random random=new Random();int[] args=new int[10];for (int i = 0; i < args.length; i++) {args[i]=random.nextInt(100);}... 阅读全文
posted @ 2010-07-01 00:37 S_V 阅读(175) 评论(0) 推荐(0)