摘要: Labyrinth public class Labyrinth { public static void main(String[] args){ Map map=new Map(); map.init(); map.show(); Mouse mouse=new Mouse(); mouse.s 阅读全文
posted @ 2021-06-20 16:46 ascertain 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 杨辉三角 import java.util.Scanner; public class B { public static void main(String[] args) { int[][] array=new int[10][]; for(int i=0;i<array.length;++i){ 阅读全文
posted @ 2021-06-20 10:59 ascertain 阅读(45) 评论(0) 推荐(0) 编辑