using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static int[] Edades = new int[20];
static void Main(string[] args)
{
int op;
string leido;
do
{
Console.Clear();
Console.WriteLine("1. Almacenar Datos");
Console.WriteLine("2. Recuperar Datos");
Console.Write("Elige una opcion:");
op = int.Parse(Console.ReadLine());
switch (op)
{
case 1: AlmacenarEdades();
break;
case 2: RecuperarDatos();
break;
default: Console.Write("Opcion incorrecta");
break;
}
Console.Write("Desea salir?: s/n");
leido = Console.ReadLine();
} while (leido != "s");
Console.ReadKey();
}
static void AlmacenarEdades()
{
Console.WriteLine("Introduce 20 edades: ");
for (int x = 0; x < 20; x++)
{
Edades
- = int.Parse(Console.ReadLine());
}
}
static void RecuperarDatos()
{
Console.WriteLine("Las edades introducidas fueron: ");
for (int x = 0; x < 20; x++)
{
Console.WriteLine(Edades
}
}
}
}