added comments
This commit is contained in:
parent
901f3764cc
commit
1804300a41
|
@ -5,20 +5,20 @@ public class Laba2
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
const int a = 2;
|
const int a = 2;
|
||||||
int[,] b = new[,]
|
int[,] b = new[,] //створення матриці;
|
||||||
{
|
{
|
||||||
{ 1, 2, 8 },
|
{ 1, 2, 8 },
|
||||||
{ 3, 4, 5 },
|
{ 3, 4, 5 },
|
||||||
{ 6, 7, 9 }
|
{ 6, 7, 9 }
|
||||||
};
|
};
|
||||||
int rows = b.GetLength(0);
|
int rows = b.GetLength(0); //отримання довжини рядків
|
||||||
int cols = b.GetLength(1);
|
int cols = b.GetLength(1); //отримання довжини стовпців
|
||||||
for (int i = 0; i < rows; i++)
|
for (int i = 0; i < rows; i++)
|
||||||
{
|
{
|
||||||
int Avg = 0;
|
int Avg = 0;
|
||||||
for (int j = 0; j < cols; j++)
|
for (int j = 0; j < cols; j++)
|
||||||
{
|
{
|
||||||
Console.Write(b[i, j] + " ");
|
Console.Write(b[i, j] + " "); // перебір матриці для обчислення середнього значення рядка
|
||||||
Avg += b[i, j];
|
Avg += b[i, j];
|
||||||
}
|
}
|
||||||
Avg = Avg / cols;
|
Avg = Avg / cols;
|
||||||
|
@ -31,7 +31,7 @@ public class Laba2
|
||||||
{
|
{
|
||||||
for (int y = 0; y < cols; y++)
|
for (int y = 0; y < cols; y++)
|
||||||
{
|
{
|
||||||
Console.Write(b[x, y] * a + " ");
|
Console.Write(b[x, y] * a + " "); //виведення матриці, помноженої на константу
|
||||||
|
|
||||||
}
|
}
|
||||||
Console.WriteLine(" ");
|
Console.WriteLine(" ");
|
||||||
|
|
Loading…
Reference in New Issue