How to create a two dimensional (2D) array in Java

2 Answers

0 votes
public class MyClass {
    public static void main(String args[]) {
        int rows = 3;
        int cols = 4;
        int[][] array = new int[rows][cols];
  
        for(int i = 0; i < rows; i++) {
            for(int j = 0;j < cols; j++) {
                System.out.print(array[i][j] + " ");
            }
            System.out.println();
        }
    }
}
 
 
 
 
/*
run:
 
0 0 0 0 
0 0 0 0 
0 0 0 0 
 
*/

 



answered Feb 15, 2023 by avibootz
edited Nov 26, 2023 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        int[][] array = {{1, 2, 3, 18}, {4, 5, 6, 27}, {7, 8, 9, 99}};
        
        int rows = array.length;
        int cols = array[0].length;
  
        for(int i = 0; i < rows; i++) {
            for(int j = 0;j < cols; j++) {
                System.out.print(array[i][j] + " ");
            }
            System.out.println();
        }
    }
}
 
 
 
 
/*
run:
 
1 2 3 18 
4 5 6 27 
7 8 9 99 
 
*/

 



answered Nov 26, 2023 by avibootz

Related questions

2 answers 226 views
3 answers 212 views
3 answers 219 views
1 answer 137 views
...