Массив: Найти сумму двух матриц размером nхm - C#
Формулировка задачи:
Здравствуйте, помогите пожалуйста сделать задание срочно до завтра. Найти сумму двух матриц размером nхm.
Решение задачи: «Массив: Найти сумму двух матриц размером nхm»
textual
Листинг программы
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; using System.Collections; namespace TestConsoleProjectForAll { class Program { public static int N = 3; public static int M = 4; static void Main(string[] args) { int[,] matrix1 = new int[N, M]; int[,] matrix2 = new int[N, M]; init(matrix1); init(matrix2); GetSum(matrix1, matrix2); } static void init (int [,] arr) { Random rnd = new Random(); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { arr[i, j] = rnd.Next(101); //0...100 random Console.Write(arr[i, j] + " "); } Console.WriteLine(); } Console.WriteLine("//*********************************************//"); } static void GetSum(int [,] arr1, int [,] arr2) { Console.WriteLine("//*********************************************//"); Console.WriteLine("Res is:\n"); int[,] resMatrix = new int[N, M]; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { resMatrix[i, j] = arr1[i, j] + arr2[i, j]; Console.Write(resMatrix[i, j] + " "); } Console.WriteLine(); } } } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д