Random rnd = new Random();
Console.WriteLine("Введите размерность массива");
int n = Convert.ToInt32(Console.ReadLine());
int[,] Array = new int[n, n];
for (int i = 0; i < Array.GetLength(0); i++)
{
for (int j = 0; j < Array.GetLength(1); j++)
Array[i, j] = rnd.Next(10, 100);
Console.Write($"{Array[i,j]}\t");
}
Console.WriteLine();
int[] summ = new int[n];
summ[i] += Array[j, i];
for (int i = 0; i < summ.Length; i++)
Console.WriteLine($"\n{summ[i]/n}");
Console.ReadKey();
Объяснение:
Random rnd = new Random();
Console.WriteLine("Введите размерность массива");
int n = Convert.ToInt32(Console.ReadLine());
int[,] Array = new int[n, n];
for (int i = 0; i < Array.GetLength(0); i++)
{
for (int j = 0; j < Array.GetLength(1); j++)
{
Array[i, j] = rnd.Next(10, 100);
Console.Write($"{Array[i,j]}\t");
}
Console.WriteLine();
}
int[] summ = new int[n];
for (int i = 0; i < Array.GetLength(0); i++)
{
for (int j = 0; j < Array.GetLength(1); j++)
{
summ[i] += Array[j, i];
}
}
for (int i = 0; i < summ.Length; i++)
{
Console.WriteLine($"\n{summ[i]/n}");
}
Console.ReadKey();
Объяснение: