How to sum 2D array (matrix) rows in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int[,] matrix = new int[3, 5] { { 1, 1, 1, 1, 1 },
                                            { 2, 2, 2, 2, 2 },
                                            { 3, 3, 3, 3, 3 } };
            int[] rows_sum = new int[3] { 0, 0, 0 };

            sum_matrix_rows(matrix, rows_sum);

            for (int i = 0; i < 3; i++)
                Console.WriteLine(rows_sum[i]);
        }

        public static void sum_matrix_rows(int[,] matrix, int[] rows_sum)
        {
            for (int i = 0; i < matrix.GetLength(0); i++)
            {
                for (int j = 0; j < matrix.GetLength(1); j++)
                    rows_sum[i] += matrix[i,j];
            }
        }
    }
}


/*
run:
       
5
10
15
   
*/

 



answered Apr 13, 2018 by avibootz

Related questions

1 answer 201 views
2 answers 294 views
2 answers 256 views
1 answer 193 views
193 views asked Apr 17, 2018 by avibootz
1 answer 225 views
225 views asked Apr 16, 2018 by avibootz
1 answer 167 views
1 answer 218 views
218 views asked Apr 16, 2018 by avibootz
...