static void Main(string[] args)
{
string nombre;
List
<string> alumnos
= new List
<string>(); Console.WriteLine("Inserte nombres. Cuando termine pulse enter");
nombre = Console.ReadLine();
while (nombre != "")
{
alumnos.Add(nombre);
nombre = Console.ReadLine();
}
string[] Ordenados
= new string[alumnos
.Count];
for (int a = 0; a < alumnos.Count; a++)
{
string temp = alumnos[a];
char[] seps = { ' ' };
string[] cad = temp.Split(seps);
if (cad.Length == 1)
Ordenados[a] = cad[0];
else if (cad.Length == 2)
Ordenados[a] = cad[1] + " " + cad[0];
else if (cad.Length == 3)
Ordenados[a] = cad[1] + " " + cad[2] + " " + cad[0];
else
{
for (int i = 2; i < cad.Length; i++)
Ordenados[a] += cad[i] + " ";
Ordenados[a] += cad[0] + " " + cad[1];
}
}
Array.Sort(Ordenados);
foreach (string C in Ordenados)
Console.WriteLine(C);
}