Advertisement
vovanhik_24

#20

Aug 26th, 2023 (edited)
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.11 KB | None | 0 0
  1.             int[,] matrix = {
  2.                 { 2, 2, 3 },
  3.                 { 5, 5, 10 },
  4.                 { 3, 5, 4 },
  5.                 { 7, 2, 3 }
  6.             };
  7.             int lineIndexMatrix = 1;
  8.             int columIndexMatrix = 0;
  9.             int multiplyColumnMatrix = 1;
  10.             int sumLineMatrix = 0;
  11.  
  12.             for (int i = 0; i < matrix.GetLength(1); i++)
  13.             {
  14.                 sumLineMatrix += matrix[lineIndexMatrix, i];
  15.             }
  16.  
  17.             for (int i = 0; i < matrix.GetLength(0); i++)
  18.             {
  19.                 multiplyColumnMatrix *= matrix[i, columIndexMatrix];
  20.             }
  21.  
  22.             for (int i = 0; i < matrix.GetLength(0); i++)
  23.             {
  24.                 for (int j = 0; j < matrix.GetLength(1); j++)
  25.                 {
  26.                     Console.Write(matrix[i, j] + " ");
  27.                 }
  28.  
  29.                 Console.WriteLine();
  30.             }
  31.  
  32.             Console.WriteLine($"\nСумма {lineIndexMatrix + 1} строки: {sumLineMatrix}\nПроизведение {columIndexMatrix + 1} " +
  33.                 $"столбца: {multiplyColumnMatrix}\n");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement