20091211

PRACTICA 11.2 VENDEDORES (consola)


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
double[,] sueldos = new double[10, 15];
double[] precio = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
int Nv, Art, N, sigue = 1;

do
{
Console.WriteLine("No DE VENDEDOR:");

Nv = int.Parse(Console.ReadLine());

Console.WriteLine("No DE ARTICULO:");

Art = int.Parse(Console.ReadLine());

Console.WriteLine("CANTIDAD DE ARTICULO:");

N = int.Parse(Console.ReadLine());

sueldos[Nv - 1, Art - 1] = sueldos[Nv - 1, Art - 1] + N * precio[Art - 1];

Console.WriteLine("PRECIONE 1 PARA CONTINUAR 0 PARA CALCULAR SUELDOS");
sigue = int.Parse(Console.ReadLine());

}
while (sigue == 1);
{
int v, p;
double sum, salario;
for (v = 0; v < v =" v">
{
sum = 0;

for (p = 0; p < p =" p">
{
sum = sum + sueldos[v, p];

}
salario = sum * 0.05;

Console.WriteLine("No DE VENDEDOR:{0}", v + 1);
Console.WriteLine("SUELDO:{0}", salario);


}
}
Console.ReadKey();



}
}
}

No hay comentarios:

Publicar un comentario