-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
79 lines (62 loc) · 2.32 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Exercício_1
{
internal class Program
{
static void Main(string[] args)
{
int d, somalinha, somacoluna, somaprinci, somasecunda;
somalinha = somacoluna = somaprinci = somasecunda = 0;
Random r = new Random();
Console.WriteLine("Informe a dimensão da matriz:");
d = int.Parse(Console.ReadLine());
int[,] mat = new int[d, d];
for(int i = 0; i < mat.GetLength(0); i++)
{
somalinha = 0;
for(int j = 0; j < mat.GetLength(1); j++)
{
mat[i, j] = r.Next(1, 11);
somalinha += mat[i, j];
Console.Write(mat[i, j] + " ");
}
Console.WriteLine();
Console.WriteLine($"A soma da linha {i + 1} é igual a {somalinha}");
}
Console.WriteLine();
for (int j = 0; j < mat.GetLength(0); j++)
{
somacoluna = 0;
for (int i = 0; i < mat.GetLength(1); i++)
{
somacoluna += mat[i, j];
Console.Write(mat[i, j] + " ");
}
Console.WriteLine();
Console.WriteLine($"A soma da coluna {j + 1} é igual a {somacoluna}");
}
for(int i = 0; i < mat.GetLength(0); i++)
{
somaprinci += mat[i, i];
}
Console.WriteLine($"A soma da diagonal prncipal é igual a {somaprinci}");
for (int i = 0, j = mat.GetLength(1); i < mat.GetLength(0); i++, j--)
{
somalinha = 0;
for (int j = 0; ; j++)
{
mat[i, j] = r.Next(1, 11);
somalinha += mat[i, j];
Console.Write(mat[i, j] + " ");
}
Console.WriteLine();
Console.WriteLine($"A soma da linha {i + 1} é igual a {somalinha}");
}
Console.Read();
}
}
}