IGRODELOFF

Task20

Apr 4th, 2022 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.88 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Task20
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Random random = new Random();
  14.  
  15.             int column = 1;
  16.             int line = 2;
  17.             int translationForComputer = 1;
  18.             int minValue = 0;
  19.             int maxValue = 10;
  20.             int sumHorizontal = 0;
  21.             int workVertical = 1;
  22.             int[,] array = new int[random.Next(minValue,maxValue), random.Next(minValue, maxValue)];
  23.  
  24.             for (int i = minValue; i < array.GetLength(0); i++)
  25.             {
  26.                 for (int j = minValue; j < array.GetLength(1); j++)
  27.                 {
  28.                     array[i, j] = random.Next(minValue, maxValue);
  29.                     Console.Write(array[i, j] + " ");
  30.                 }
  31.                 Console.WriteLine(" ");
  32.             }
  33.  
  34.             for (int i = minValue; i < array.GetLength(0); i++)
  35.             {
  36.                 for (int j = minValue; j < array.GetLength(1); j++)
  37.                 {
  38.                     if (i == (line - translationForComputer))
  39.                     {
  40.                         sumHorizontal += array[i,j];
  41.                     }
  42.                 }
  43.             }
  44.  
  45.             for (int i = minValue; i < array.GetLength(0); i++)
  46.             {
  47.                 for (int j = minValue; j < array.GetLength(1); j++)
  48.                 {
  49.                     if (j == (column - translationForComputer) && array[i,j] != minValue)
  50.                     {
  51.                         workVertical *= array[i, j];
  52.                     }
  53.                 }
  54.             }
  55.             Console.WriteLine("\nCумма строки равна: " + sumHorizontal + "\n\nПроизведение столбца равно: " + workVertical);
  56.         }
  57.     }
  58. }
  59.  
Add Comment
Please, Sign In to add comment