public static void Main()
char [] CLAVE={' ',' ',' ',' ',' ',' ',' ',' ',' ',' '};
int [] UN={' ',' ',' ',' ',' ',' ',' ',' ',' ',' '};
string REPORTEA="",REPORTEB="";
Console.Write("CLIENTE: " + I);
Console.Write(" CLAVE DEL ARTICULO: 1-CEMENTO, 2-ALAMBRÒN , 3-ESTUCO , 4-YESO: ");
CLAVE[I]=Convert.ToChar(Console.ReadLine());
Console.Write(" UNIDADES ");
UN[I]=Convert.ToInt32(Console.ReadLine());
REPORTEA+= "CLIENTE: " + I + ", PRECIO POR CADA CLIENTE: " +PRECIO+ "\n";
REPORTEB+="CLIENTE: " +I + " ,CLAVE DEL ARTICULO: "+CLAVE[I]+ ", TOTAL DEL ARTICULO: "+UN[I]+ "\n";
Console.WriteLine("===================INGRESO POR CADA CLIENTE========================");
Console.WriteLine(REPORTEA);
Console.WriteLine("=================REPORTE POR LOS 10 CLIENTES========================");
Console.WriteLine(REPORTEB);
Console.WriteLine("=================INGRESO TOTAL POR LOS CLIENTES========================");
Console.WriteLine("INGRESO TOTAL POR LOS CLIENTES: "+ TVP);