Exemple #1
0
        static void Main(String[] args)
        {
            Automovil auto = new Automovil();

            auto.muestraPrecio();

            Console.ReadKey();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            Vehiculo        v1        = new Vehiculo(120, "Ferrari");
            Automovil       a1        = new Automovil(5, 120, "Renault");
            PalaMecanica    p1        = new PalaMecanica(140, 60, "Bosch");
            List <Vehiculo> vehiculos = new List <Vehiculo>();

            vehiculos.Add(v1);
            vehiculos.Add(p1);
            vehiculos.Add(a1);
        }
Exemple #3
0
        static void Main(string[] args)
        {
            Vehiculo     v1 = new Vehiculo(100);
            Automovil    a1 = new Automovil(5, 120);
            PalaMecanica p1 = new PalaMecanica(50, 40);

            List <Vehiculo> garaje = new List <Vehiculo>()
            {
                v1, a1, p1
            };

            foreach (Vehiculo vehiculo in garaje)
            {
                vehiculo.MostrarDatos();
            }
        }
Exemple #4
0
        static void Main(string[] args)
        {
            //Colores xColorCamion = new Colores();
            Camion    scania   = new Camion(12, 2, Colores.Gris, 4, 2500);
            Automovil ford     = new Automovil(4, 5, Colores.Azul, 5, 5);
            Moto      kawazaky = new Moto(2, 0, Colores.Rojo, 7);

            Console.BackgroundColor = ConsoleColor.Blue;
            Console.ForegroundColor = ConsoleColor.Yellow;

            StringBuilder xStr = new StringBuilder();

            xStr.AppendLine("Camion: Scania 1114");
            xStr.AppendLine("Cantidad de Ruedas: " + scania.cantidadRuedas);
            xStr.AppendLine("Cantidad de Puertas: " + scania.cantidadPuertas);
            xStr.AppendLine("Color: " + scania.color);
            xStr.AppendLine("Cantidad de Marchas: " + scania.cantidadMarchas);
            xStr.AppendLine("Peso de carga: " + scania.pesoCarga);
            xStr.AppendLine("");
            xStr.AppendLine("");
            xStr.AppendLine("FORD MONDEO 2018");
            xStr.AppendLine("Cantidad de Ruedas: " + ford.cantidadRuedas);
            xStr.AppendLine("Cantidad de Puertas: " + ford.cantidadPuertas);
            xStr.AppendLine("Color: " + ford.color);
            xStr.AppendLine("Cantidad de Marchas: " + ford.cantidadMarchas);
            xStr.AppendLine("Cantidad de Pasajeros: " + ford.cantidadPasajeros);
            xStr.AppendLine("");
            xStr.AppendLine("");
            xStr.AppendLine("KAWAZAKY NINJA 2018");
            xStr.AppendLine("Cantidad de Ruedas: " + kawazaky.cantidadRuedas);
            xStr.AppendLine("Cantidad de Puertas: " + kawazaky.cantidadPuertas);
            xStr.AppendLine("Color: " + kawazaky.color);
            xStr.AppendLine("Cilindradas: " + kawazaky.cilindradas);

            Console.Write(xStr.ToString());
            Console.ReadKey();
        }