Advertisement
vencinachev

Matrix - main sums

Oct 26th, 2020
2,259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.78 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 Matrixx
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Random rand = new Random();
  14.             int n = int.Parse(Console.ReadLine());
  15.             int[,] matrix = new int[n, n];
  16.  
  17.             for (int row = 0; row < matrix.GetLength(0); row++)
  18.             {
  19.                 for (int col = 0; col < matrix.GetLength(1); col++)
  20.                 {
  21.                     matrix[row, col] = rand.Next(0, 3);
  22.                 }
  23.             }
  24.  
  25.             for (int row = 0; row < matrix.GetLength(0); row++)
  26.             {
  27.                 for (int col = 0; col < matrix.GetLength(1); col++)
  28.                 {
  29.                     Console.Write("{0:D2} ", matrix[row, col]);
  30.                 }
  31.                 Console.WriteLine();
  32.             }
  33.  
  34.             int sum = 0;
  35.             for (int row = 0; row < matrix.GetLength(0); row++)
  36.             {
  37.                 for (int col = 0; col < matrix.GetLength(1); col++)
  38.                 {
  39.                     if (col == row)
  40.                     {
  41.                         sum += matrix[row, col];
  42.                     }
  43.                 }
  44.             }
  45.             Console.WriteLine("Primary diagonal sum = {0}", sum);
  46.  
  47.             sum = 0;
  48.             for (int row = 0; row < matrix.GetLength(0); row++)
  49.             {
  50.                 for (int col = 0; col < matrix.GetLength(1); col++)
  51.                 {
  52.                     if ((col + row) == n - 1)
  53.                     {
  54.                         sum += matrix[row, col];
  55.                     }
  56.                 }
  57.             }
  58.             Console.WriteLine("Secondary diagonal sum = {0}", sum);
  59.  
  60.         }
  61.     }
  62. }
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement