public static void Main()
int z = 0, y = 0, x = 0, w = 0, v = 0;
double promediop = 0, promedion = 0;
Console.WriteLine("Ingrese 10 numeros que tengan la posibilidad de ser negativas o positivas");
for (int i = 0; i < 10; i++)
Console.WriteLine("Ingrese la cantidad No" + (i+1));
z = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("EL PROMEDIO DE LAS CANTIDADES POSITIVAS ES: " + promediop);
Console.WriteLine("EL PROMEDIO DE LAS CANTIDADES NEGATIVAS ES: " + promedion);