美文网首页
2023循环遍历数组中的每个元素

2023循环遍历数组中的每个元素

作者: 哈迪斯Java | 来源:发表于2023-07-20 18:07 被阅读0次

    public class Matrix { // 创建类
    public static void main(String[] args) { // 主方法
    int a[][] = new int[3][4]; // 定义二维数组
    for (int i = 0; i < a.length; i++) {
    for (int j = 0; j < a[i].length; j++) { // 循环遍历数组中的每个元素
    System.out.print(a[i][j]); // 将数组中的元素输出
    }
    System.out.println(); // 输出空格
    }
    }
    }

    相关文章

      网友评论

          本文标题:2023循环遍历数组中的每个元素

          本文链接:https://www.haomeiwen.com/subject/mwphddtx.html