public static void Main()
int[]arrnumeros = new int[10];
for (int l = 0; l <10; l++)
Console.Write("Dame un valor entre el 20 y el 80: ");
num = Convert.ToInt16(Console.ReadLine());
}while((num<20) && (num >80));
for(int l =0; l < 10; l++)
Console.Write("{0} ", arrnumeros[l]);