摘要: 1.//生成1——3的随机数 int x = 1 + (int) (Math.random() * 3);2.//生成一个随机6位数Random rand = new Random();long l = 0;for (int i = 0; i < 11; i++) { l = (long) (... 阅读全文
posted @ 2014-12-05 09:42 包包酱 阅读(141) 评论(0) 推荐(0) 编辑