Answers for "size of matrix in java"

4

how to get the dimensions of a 2d array in java

public class Main {
  public static void main(String[] args) {
    int[][] test = new int[10][4];
    int rows = test.length;
    int coloumns = test[0].length;
    System.out.println(rows);
    System.out.println(coloumns);
  }
}
Posted by: Guest on June-23-2020
1

java get size of matrix

//Get rows size matrix
matrix.length;
//Get columns size of matrix
matrix[0].length;
Posted by: Guest on May-23-2021
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 "Java"

Java Answers by Framework

Browse Popular Code Answers by Language