📜  多维数组java代码示例中的for循环

📅  最后修改于: 2022-03-11 14:52:23.746000             🧑  作者: Mango

代码示例1
public class ForLoopExample {
    public static void main(String[] args) {
        int[][] values = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
         
        System.out.println("Elements are :");
        for(int i=0; i< values.length; i++) {
            for(int j=0; j< values[i].length; j++) {
                System.out.print(values[i][j] + "\t");
            }
            System.out.println("");
        }
    }
}