Advertisement
IvanOseledko

Homework20

Dec 3rd, 2023 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PracticeWorkIJunior
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int sumElementsInRow = 0;
  10.             int productElementsInColumn = 1;
  11.             int[,] matrix =
  12.             {
  13.                 { 1, 2, 3},
  14.                 { 4, 5, 6},
  15.                 { 7, 8, 9},
  16.                 { 3, 2, 3}
  17.             };
  18.  
  19.             Console.WriteLine("Исходная матрица: \n");
  20.  
  21.             for (int i = 0; i < matrix.GetLength(0); i++)
  22.             {
  23.                 for (int j = 0; j < matrix.GetLength(1); j++)
  24.                 {
  25.                     Console.Write(" |" + matrix[i, j] + "| ");
  26.                 }
  27.                 Console.WriteLine();
  28.             }
  29.  
  30.             for (int i = 0; i < matrix.GetLength(1); i++)
  31.             {
  32.                 sumElementsInRow += matrix[1, i];
  33.             }
  34.  
  35.             for (int i = 0; i < matrix.GetLength(0); i++)
  36.             {
  37.                 productElementsInColumn *= matrix[i, 0];
  38.             }
  39.  
  40.             Console.WriteLine($"\nСумма элементов втрой строки матрицы равна: {sumElementsInRow}");
  41.             Console.WriteLine($"\nПроизведение элементов первого столбца матрицы равно: {productElementsInColumn}");
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement