20090924

PRACTICA 2.3 COSTO DE UN AUTO MOVIL (consola)



EL COSTO DE UN AUTOMOVIL NUEVO PARA EL COMPRADOR ES LA SUMA TOTAL DEL COSTO DEL VEICULO, DEL PORCENTAJE DE GANANCIA DEL VENDEDOR Y DE LOS IMPUESTOS LOCALES O ESTATALES APLICADAS(SOBRE EL PRECIO VENTA). SUPONGASE UNA GANACIA DEL VENDEDOR DEL 12% EN TODAS LAS UNIDADES Y UN IMPUESTO DEL 6.0% Y DISEÑE UN PROGRAMA PARA LEER EL COSTO DEL AUTO E IMPRIMIR EL COSTO DEL CONSUMIDOR.




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

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int Costo, Ganancia, Impuesto, CAUTO;
Console.WriteLine("\t\tintroduce el valor del auto");
CAUTO = int.Parse(Console.ReadLine());
Impuesto = (CAUTO * 6) / 100;
Ganancia = (CAUTO * 12) / 100;
Costo = CAUTO + Impuesto + Ganancia;
Console.WriteLine("\t\t El impuesto es de {0}", Impuesto);
Console.WriteLine("\t\t La ganancia del vendedor es {0}", Ganancia);
Console.WriteLine("\t\t El costo final del auto es {0}", Costo);
Console.ReadKey();
}
}
}

No hay comentarios:

Publicar un comentario