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

51,875 answers

573 users

How to add 2 matrices in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        int a[][] = { {1, 0, 2},  
                      {3, 5, 6},  
                      {7, 4, 1} };  
            
        int b[][] = { {1, 0, 1},  
                      {2, 2, 1},  
                      {1, 3, 1} };  

        int rows = a.length;  
        int cols = a[0].length;  
          
        int sum[][] = new int[rows][cols];  
          
        for (int i = 0; i < rows; i++) {  
            for (int j = 0; j < cols; j++) {  
                sum[i][j] = a[i][j] + b[i][j];  
            }  
        }  
          
        for (int i = 0; i < rows; i++) {  
            for (int j = 0; j < cols; j++) {  
               System.out.print(sum[i][j] + " ");  
            }  
            System.out.println();  
        }  
    }
}




 
/*
run:
 
2 0 3 
5 7 7 
8 7 2 
 
*/

 



answered Aug 4, 2021 by avibootz

Related questions

1 answer 158 views
1 answer 110 views
110 views asked Aug 4, 2021 by avibootz
1 answer 108 views
108 views asked Aug 4, 2021 by avibootz
1 answer 91 views
91 views asked Aug 4, 2021 by avibootz
1 answer 153 views
153 views asked May 24, 2017 by avibootz
1 answer 88 views
1 answer 98 views
...