摘要: String str="abcdefghigklmnopqrstuvwxyzABCDEFGHIGKLMNOPQRSTUVWXYZ0123456789"; Random r=new Random(); String arr[]=new String [4]; String b=""; for(int 阅读全文
posted @ 2016-05-13 08:42 暗蓝幻灭 阅读(509) 评论(0) 推荐(0) 编辑
摘要: Random r = new Random(); int[] a ={1,2,3,4,5,6}; int c = 0; while (true) { for(int i = 0;i<a.length;i++) { int b = r.nextInt(36); a[i]=b+1; } for(int 阅读全文
posted @ 2016-05-13 08:13 暗蓝幻灭 阅读(575) 评论(0) 推荐(0) 编辑