Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace PracticeWorkIJunior
- {
- class Program
- {
- static void Main()
- {
- int sumElementsInRow = 0;
- int productElementsInColumn = 1;
- int[,] matrix =
- {
- { 1, 2, 3},
- { 4, 5, 6},
- { 7, 8, 9},
- { 3, 2, 3}
- };
- Console.WriteLine("Исходная матрица: \n");
- for (int i = 0; i < matrix.GetLength(0); i++)
- {
- for (int j = 0; j < matrix.GetLength(1); j++)
- {
- Console.Write(" |" + matrix[i, j] + "| ");
- }
- Console.WriteLine();
- }
- for (int i = 0; i < matrix.GetLength(1); i++)
- {
- sumElementsInRow += matrix[1, i];
- }
- for (int i = 0; i < matrix.GetLength(0); i++)
- {
- productElementsInColumn *= matrix[i, 0];
- }
- Console.WriteLine($"\nСумма элементов втрой строки матрицы равна: {sumElementsInRow}");
- Console.WriteLine($"\nПроизведение элементов первого столбца матрицы равно: {productElementsInColumn}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement