Advertisement
IGRODELOFF

HW: Working With Specific Rows Or Columns

Nov 4th, 2024 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.56 KB | None | 0 0
  1. using System;
  2.  
  3. namespace homeWorkWorkingWithSpecificRowsOrColumns
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Random random = new Random();
  10.  
  11.             int countRows = 3;
  12.             int countCols = 3;
  13.  
  14.             int[,] matrix = new int[countRows, countCols];
  15.  
  16.             int minValue = 1;
  17.             int maxValue = 100;
  18.             int sumRow = 0;
  19.             int prodColumn = 1;
  20.             int numberRow = 2;
  21.             int numberColumn = 1;
  22.  
  23.             for (int i = 0; i < countRows; i++)
  24.             {
  25.                 for (int j = 0; j < countCols; j++)
  26.                 {
  27.                     matrix[i, j] = random.Next(minValue, maxValue + 1);
  28.                 }
  29.             }
  30.  
  31.             Console.WriteLine("Исходная матрица:");
  32.  
  33.             for (int i = 0; i < countRows; i++)
  34.             {
  35.                 for (int j = 0; j < countCols; j++)
  36.                 {
  37.                     Console.Write($"{matrix[i, j]} ");
  38.                 }
  39.                 Console.WriteLine();    
  40.             }
  41.  
  42.             for (int j = 0; j < countCols; j++)
  43.             {
  44.                 sumRow += matrix[numberRow - 1, j];
  45.             }
  46.  
  47.             for (int i = 0; i < countRows; i++)
  48.             {
  49.                 prodColumn *= matrix[i, numberColumn - 1];
  50.             }
  51.  
  52.             Console.WriteLine($"Сумма второй строки: {sumRow}");
  53.             Console.WriteLine($"Произведение первого столбца: {prodColumn}");
  54.         }
  55.     }
  56. }
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement