Advertisement
VodVas

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

Aug 28th, 2023 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.31 KB | Software | 0 0
  1. namespace Работа_с_конкретными_строками_столбцами
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int sum = 0;
  8.             int product = 1;
  9.             int lineIndex = 1;
  10.             int columnIndex = 0;
  11.             string outputSecondLine = "второй строки";
  12.             string outputFirstColumn = "первого столбца";
  13.  
  14.             int[,] array =
  15.             {
  16.                 { 1, 2, 3, },
  17.                 { 4, 5, 6, },
  18.                 { 7, 8, 9, }
  19.             };
  20.  
  21.             for (int i = 0; i < array.GetLength(0); i++)
  22.             {
  23.                 for (int j = 0; j < array.GetLength(1); j++)
  24.                 {
  25.                     Console.Write(array[i, j] + " ");
  26.                 }
  27.  
  28.                 Console.WriteLine();
  29.             }
  30.  
  31.             for (int i = 0; i < array.GetLength(1); i++)
  32.             {
  33.                 sum += array[lineIndex, i];
  34.             }
  35.  
  36.             for (int i = 0; i < array.GetLength(0); i++)
  37.             {
  38.                 product *= array[i, columnIndex];
  39.             }
  40.  
  41.             Console.WriteLine($"\nСумма {outputSecondLine}: {sum}");
  42.             Console.WriteLine($"Произведение {outputFirstColumn}: {product}");
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement