public static void Main()
Console.WriteLine("Escriba su edad:");
int edad = int.Parse(Console.ReadLine());
if (edad >= 0 && edad <= 14)
Console.WriteLine("Hola, mucho gusto, bienvenido al sistema. Usted tiene acceso al menú de niños.");
else if (edad >= 15 && edad <= 29)
Console.WriteLine("Hola, mucho gusto, bienvenido al sistema. Usted tiene acceso al menú de jóvenes.");
else if (edad >= 30 && edad <= 59)
Console.WriteLine("Hola, mucho gusto, bienvenido al sistema. Usted tiene acceso al menú de adultos.");
Console.WriteLine("Hola, mucho gusto, bienvenido al sistema. Usted tiene acceso al menú de la tercera edad.");