public static void Main()
Console.Write("Въведете броя редове: ");
int rows = int.Parse(Console.ReadLine());
Console.Write("Въведете броя колони: ");
int cols = int.Parse(Console.ReadLine());
double[,] matrix = new double[rows + 1, cols];
for (int row = 0; row < rows; row++)
for (int col = 0; col < cols; col++)
matrix[row, col] = int.Parse(Console.ReadLine());
for (int col = 0; col < cols; col++)
double min = matrix[0,col];
for (int row = 1; row < rows; row++)
if (matrix[row,col] < min) { min = matrix[row,col]; }
Console.WriteLine("Цифрите изведени в таблица:");
for (int row = 0; row <= rows; row++)
for (int col = 0; col < cols; col++)
Console.Write("{0,10}", matrix[row, col]);