摘要: public class Poker { public static void main(String[] args) { /* * 1: 准备牌操作 */ //1.1 创建牌盒 将来存储牌面的 ArrayList<String> pokerBox = new ArrayList<String>() 阅读全文
posted @ 2021-04-19 17:12 Cherish° 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 生成10个10到100之间的随机数 public void test01() { List<Integer> list = new ArrayList<>(); for (int i = 0; i < 10; i++) { int number = (int) (Math.random() * 90 阅读全文
posted @ 2021-04-19 14:36 Cherish° 阅读(77) 评论(0) 推荐(0) 编辑