Answers for "how to store multidimensional array in java using for each loop"

2

for loop in multidimensional array java

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("");
        }
    }
}
Posted by: Guest on September-19-2020

Code answers related to "how to store multidimensional array in java using for each loop"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language