Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

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 195 views
3 answers 182 views
3 answers 187 views
1 answer 122 views
...