Enter 5 numbers and show on screen
int n=1;
for(int i = 0; i < 5; i++)
{
Console.WriteLine("Dame un numero");
n = Convert.ToInt16(Console.ReadLine());
}
Console.ReadKey();