摘要:
1. 2. 3.例添加notePad++,在shell下创建notePad++文件夹(项),并在notePad++文件夹(项)下创建command文件夹(项) 3.1 3.2 4.添加右键文字,点击notePad++文件夹,编辑右侧默认的值 5.选择要执行的程序,点击command文件夹,编辑右侧默 阅读全文
摘要:
/** * 生成[1, max]之间的随机数 */ public static Integer getRandomNumber(Integer max) { Random rd = new Random(); return rd.nextInt(max) + 1; } /** * 生成[x, y]之 阅读全文