摘要: 二维数组 可以理解为一个数组里面嵌套了另一个数组 如何程序的概念都应该在程序中体现和分析 package reck;​public class Demo03 { public static void main(String[] args) { /* 动态的表示 */ int[][] a=new in 阅读全文
posted @ 2021-03-09 20:43 默默努力的路人甲 阅读(71) 评论(0) 推荐(0)
摘要: Java数组的进阶 求数组中的最大值 package reck;​public class Demo02 { public static void main(String[] args) { //求数组中的最大值 int[] num={1,2,3,4,5}; int max = 0;//先定义一个值 阅读全文
posted @ 2021-03-09 14:43 默默努力的路人甲 阅读(131) 评论(0) 推荐(0)