摘要:
` public class YanghuiTest2 { public static void main(String[] args) { //动态初始化一个10行的二维数组 int[][] yh = new int[10][]; for (int i = 0; i < yh.length; i+ 阅读全文
摘要:
` public class YanghuiTest { public static void main(String[] args) { int[][] yh = new int[10][]; for(int i=0;i<yh.length;i++){ yh[i] = new int[i+1]; 阅读全文