Código C#:
Ver originalusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] numeros = new int[10];
int x, promedio = 0;
int temp;
int suma = 0;
for (x = 0; x < numeros.Length; x++)
{
Console.Write("Teclea un Número"+(x+1)+":");
numeros[x] = Convert.ToInt32(Console.ReadLine());
promedio += numeros[x];
suma = promedio / numeros.Length;
}
Console.WriteLine("\nEl Promedio es: " +suma);
Console.ReadKey();
}
}
}
Ahi esta arreglado =)