public static void Main()
Console.WriteLine("Recycling Company\n");
Console.WriteLine("Capture the following data:");
Console.Write("Type of waste (1.Plastic, 2.Organic, 3.Paper, 4.Chemical): ");
int type = Convert.ToInt32(Console.ReadLine());
Console.Write("Quantity: ");
double quantity = Convert.ToDouble(Console.ReadLine());
Console.Write("Weight: ");
double weight = Convert.ToDouble(Console.ReadLine());
Console.Write("Place of origin: ");
string origin = Console.ReadLine();
location1 += origin + ",";
location2 += origin + ",";
location3 += origin + ",";
location4 += origin + ",";
if (counter < numberOrigins)
Console.WriteLine("Type Quantity Weight Locations");
Console.WriteLine("Plastic {0} \t {1} \t {2}", totalQ1, totalW1, location1);
Console.WriteLine("Organic {0} \t {1} \t {2}", totalQ2, totalW2, location2);
Console.WriteLine("Paper {0} \t {1} \t {2}", totalQ3, totalW3, location3);
Console.WriteLine("Chemical {0} \t {1} \t {2}", totalQ4, totalW4, location4);
Console.WriteLine("\n By: <<<<Luis Armando Padilla Aguirre>>>> ");