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,870 questions

51,793 answers

573 users

How to create matrix of NxN in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        int N = 4;
        int[][] matrix = new int[N][N]; 
        
        for (int i = 0; i < matrix.length; i++) {
            for (int j = 0; j < matrix[i].length; j++) {
                matrix[i][j] = i + j;
                System.out.print(matrix[i][j] + " ");
            }
            System.out.println();
        }
    }
}




/*
run:

0 1 2 3 
1 2 3 4 
2 3 4 5 
3 4 5 6 

*/

 



answered Mar 5, 2022 by avibootz

Related questions

1 answer 132 views
2 answers 138 views
2 answers 129 views
129 views asked Mar 4, 2022 by avibootz
1 answer 144 views
...