Advertisement
Suslick

Task_1

Jan 30th, 2023 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.59 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Random random = new Random();
  4.  
  5.             int minNumber = 2;
  6.             int maxNumber = 10;
  7.             int countColumns = random.Next(minNumber, maxNumber);
  8.             int countLines = random.Next(minNumber, maxNumber);
  9.             int[,] array = new int[countLines, countColumns];
  10.             int columnNumber = 1;
  11.             int lineNumber = 2;
  12.             int summLine = 0;
  13.             int productColumn = 1;
  14.  
  15.             Console.WriteLine($"Матрица [{countLines},{countColumns}]:\n");
  16.  
  17.             for (int i = 0; i < array.GetLength(0); i++)
  18.             {
  19.                 for (int j = 0; j < array.GetLength(1); j++)
  20.                 {
  21.                     array[i, j] = random.Next(minNumber, maxNumber);
  22.  
  23.                     Console.Write(array[i, j] + " ");
  24.                 }
  25.  
  26.                 Console.WriteLine();
  27.             }
  28.  
  29.             for (int i = 0; i < array.GetLength(0); i++)
  30.             {
  31.                 for (int j = 0; j < array.GetLength(1); j++)
  32.                 {
  33.                     if (i == (lineNumber - 1))
  34.                     {
  35.                         summLine += array[lineNumber - 1, j];
  36.                     }
  37.                 }
  38.             }
  39.  
  40.             for (int i = 0; i < array.GetLength(0); i++)
  41.             {
  42.                 productColumn *= array[i, columnNumber - 1];
  43.             }
  44.  
  45.             Console.WriteLine($"\nСумма {lineNumber} строки = {summLine}\n" +
  46.                 $"Произведение {columnNumber} столбца = {productColumn}");
  47.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement