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 two matrices (matrix) in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[,] matrix1 = new int[,] { { 1, 1}, { 2, 2}, { 3, 3}, { 4, 4} };
            int[,] matrix2 = new int[,] { { 5, 5 }, { 6, 6 }, { 7, 7 }, { 8, 8 } };
            int[,] sum = new int[,] { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } };


            int rows = matrix1.GetUpperBound(0);
            int cols = matrix1.GetUpperBound(1);

            for (int i = 0; i <= rows; i++)
                for (int j = 0; j <= cols; j++)
                    sum[i, j] = matrix1[i, j] + matrix2[i, j];

            for (int i = 0; i <= rows; i++)
            {
                for (int j = 0; j <= cols; j++)
                    Console.Write("{0, 2} ", sum[i, j]);
                Console.WriteLine();
            }
        }
    }
}

/*
run:
    
 6  6
 8  8
10 10
12 12
   
*/

 



answered May 24, 2017 by avibootz

Related questions

1 answer 94 views
1 answer 130 views
1 answer 153 views
153 views asked May 24, 2017 by avibootz
1 answer 249 views
249 views asked May 24, 2017 by avibootz
1 answer 160 views
160 views asked May 24, 2017 by avibootz
1 answer 146 views
146 views asked May 23, 2017 by avibootz
1 answer 214 views
...