Advertisement
NikaBang

Работа с конкретными строками/столбцами

Oct 3rd, 2024 (edited)
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.95 KB | None | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         int[,] array = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
  8.         int sum = 0;
  9.         int product = 1;
  10.         int line = 1;
  11.         int column = 0;
  12.  
  13.         for (int i = 0; i < array.GetLength(0); i++)
  14.         {
  15.             for (int j = 0; j < array.GetLength(1); j++)
  16.             {
  17.                 Console.Write(array[i, j] + " ");
  18.             }
  19.             Console.WriteLine();
  20.         }
  21.  
  22.         for (int i = 0; i < array.GetLength(0); i++)
  23.         {
  24.             product = product * array[i, column];
  25.         }
  26.  
  27.         for (int i = 0; i < array.GetLength(1); i++)
  28.         {
  29.             sum += array[line, i];
  30.         }
  31.  
  32.         Console.WriteLine($"\nCумму {line + 1}-ой строки: " + sum); ;
  33.         Console.WriteLine($"\nПроизведение {column + 1}-го столбца: " + product);
  34.         Console.ReadKey();
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement