using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TONELADAS
{
class Program
{
static void Main(string[] args)
{
Console.Title = "JOSUE SANTANA !!!!!!!!!!!!!!^_^";
Console.ForegroundColor = ConsoleColor.Magenta;
Console.BackgroundColor = ConsoleColor.Cyan;
Console.Clear();
double[] toneladas=new double[12];
double prom;
int c=0;
int w = 0;
double suma=0;
int i;
Console.WriteLine();
Console.WriteLine();
Console.WriteLine(@"PROBLEMA: EN UN ARREGLO UNIDIMENSIONAL
SE HAN ALMACENADO EL NUMERO TOTAL DE TONELADAS DE CEREALES CONSECHADOS
DURANTE CADA MES DEL AÑO ANTERIOR");
Console.WriteLine();
Console.WriteLine();
for (i = 0; i < 12; i++)
{
Console.Write("Toneladas cosechadas por mes: ");
toneladas[i]=double.Parse(Console.ReadLine());
suma += toneladas[i];
}
prom = suma / 12;
for (i = 0; i < 12; i++)
{
if (toneladas[i] >= prom)
{
c++;
}
}
for (i = 0; i < 12; i++)
{
if (toneladas[i] < prom)
{
w++;
}
}
Console.WriteLine("El promedio anual de toneladas cosechadas: "+prom);
Console.WriteLine("Meses cosecha superior al promedio anual : "+prom+" total: "+c);
Console.WriteLine("Meses cosecha inferior al promedio anual : " + prom + " total: " + w);
Console.ReadLine();
}
}
}
que significa la w?
ResponderBorrar