Advertisement
Guest User

3 Матрица. (4 балла)

a guest
May 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Matica_3_HW
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int[,] array = {
  10.             { 3, 3 },
  11.             { 3, 3 },
  12.             { 3, 3 },
  13.             { 3, 3 } };
  14.  
  15.             Console.WriteLine("Сумма второй строки " + (array[0,1]+array[1,1]));
  16.             Console.WriteLine("произведение первого столбца " + (array[0, 0] * array[1, 0] * array[2,0] * array[3,0]));
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement