摘要:
`import java.util.Arrays; public class ArrayExer2 { public static void main(String[] args) { int[] arr = new int[10]; int sum = 0; for (int i = 0; i < 阅读全文
摘要:
`import java.util.*; public class Demo13{ public static void main(String[] args) { int[] arr = new int[6]; outer:for(int i=0;i<arr.length;i++){ //先赋值一 阅读全文
摘要:
` public class YanghuiTest3 { public static void main(String[] args) { //动态初始化一个10行的二维数组 int[][] yh = new int[10][]; for (int i = 0; i < yh.length; i+ 阅读全文
摘要:
` 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]; 阅读全文