Answers for "how to check for the width and length of matrix in java"

4

java length of matrix

public static void main(String[] args) {

    int[][] foo = new int[][] {
        new int[] { 1, 2, 3 },
        new int[] { 1, 2, 3, 4},
    };

    System.out.println(foo.length); //2
    System.out.println(foo[0].length); //3
    System.out.println(foo[1].length); //4
}
Posted by: Guest on April-22-2020

Code answers related to "how to check for the width and length of matrix in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language