using System.Collections.Generic;
namespace RelacionAlumnosV
public static void Main(string[] args)
int[,] Nmatriz = new int[5, 2];
for (int f = 0; f < 5; f++)
for (int colum = 0; colum < 3; colum++)
Console.WriteLine("Dame año");
Nmatriz[f, colum] = Convert.ToInt16(Console.ReadLine());
for (int f = 0; f < 5; f++)
for (int fil = 0; fil < 5; colum++)
Console.WriteLine("" + Nmatriz[f, colum]);