public static void Main()
string [] Nombre = new string [5];
string [] Telefono = new string [5];
for ( x = 0; x <= 4; x++)
System.Console.WriteLine("¿Cual es su nombre?: ");
Nombre [x] = System.Console.ReadLine();
System.Console.WriteLine("¿Cual es su telefono?: ");
Telefono [x]= System.Console.ReadLine();
System.Console.WriteLine(" ");
System.Console.WriteLine("Directorio: ");
for ( y = 0; y <= 4; y++)
System.Console.WriteLine( Nombre [y] + " " + Telefono [y]);