public static void Main()
string [ , ] notas = new string [5,5];
for(int j = 0; j < 5; j++){
for(int i = 0; i < 5; i++){
Console.WriteLine("Digite a nome do aluno:" +(j+1));
notas [j,i] = Console.ReadLine();
Console.WriteLine("Digite a nota:");
notas [j,i] = Console.ReadLine();