摘要: public class ArrayTest { public static void main(String[] args) { int[][] array1 = new int[11][11]; array1[1][2] = 1; array1[2][3] = 2; array1[4][5] = 阅读全文
posted @ 2021-05-26 20:51 Henry` 阅读(24) 评论(0) 推荐(0)
摘要: public class BubbleSortTest { public static void main(String[] args) { int[] arrays = {1,5,3,4,7,8,6,12}; int[] ints = bubbleSort(arrays); System.out. 阅读全文
posted @ 2021-05-26 19:21 Henry` 阅读(46) 评论(0) 推荐(0)