House Ejercicio C# - Curso de Programación C# (C Sharp)

 Ejercicio

House

 Objetivo

Cree una clase "House", con un atributo "area", un constructor que establezca su valor y un método "ShowData" para mostrar "Soy una casa, mi área es de 200 m2" (en lugar de 200, mostrará la superficie real). Incluya getters y setters para el área, también.

La "Casa" contendrá una puerta. Cada puerta tendrá un atributo "color" (una cadena), y un método "ShowData" que mostrará "Soy una puerta, mi color es marrón" (o del color que sea realmente). Incluye un getter y un setter. Además, crea un "GetDoor" en la casa.

Un "SmallApartment" es una subclase de casa, con un área preestablecida de 50 m2.

Cree también una clase Person, con un nombre (cadena). Cada persona tendrá una casa. El método "ShowData" para una persona mostrará su nombre, mostrará los datos de su casa y los datos de la puerta de esa casa.

Escribe un Main para crear un SmallApartment, una persona para vivir en él, y para mostrar los datos de la persona.

 Código de Ejemplo

// Import the System namespace for basic functionality
using System;

public class HouseAndPersonDemo
{
    // Define the Door class
    public class Door
    {
        // Private attribute to store the color of the door
        private string color;

        // Constructor to initialize the door's color
        public Door(string doorColor)
        {
            color = doorColor;
        }

        // Getter method to retrieve the color of the door
        public string GetColor()
        {
            return color;
        }

        // Setter method to set the color of the door
        public void SetColor(string doorColor)
        {
            color = doorColor;
        }

        // Method to show data about the door
        public void ShowData()
        {
            // Display the color of the door
            Console.WriteLine($"I am a door, my color is {color}");
        }
    }

    // Define the House class
    public class House
    {
        // Private attribute to store the area of the house
        private int area;

        // Private attribute to store the door of the house
        private Door door;

        // Constructor to initialize the house's area and create a door for the house
        public House(int houseArea, string doorColor)
        {
            area = houseArea;
            door = new Door(doorColor);  // Create a door with the given color
        }

        // Getter method to retrieve the area of the house
        public int GetArea()
        {
            return area;
        }

        // Setter method to set the area of the house
        public void SetArea(int houseArea)
        {
            area = houseArea;
        }

        // Method to show data about the house
        public void ShowData()
        {
            // Display the area of the house
            Console.WriteLine($"I am a house, my area is {area} m2");
        }

        // Method to get the door of the house
        public Door GetDoor()
        {
            return door;
        }
    }

    // Define the SmallApartment class, which is a subclass of House
    public class SmallApartment : House
    {
        // Constructor for SmallApartment, which automatically sets the area to 50 m2
        public SmallApartment(string doorColor) : base(50, doorColor) { }
    }

    // Define the Person class
    public class Person
    {
        // Private attribute to store the name of the person
        private string name;

        // Private attribute to store the house of the person
        private House house;

        // Constructor to initialize the person's name and house
        public Person(string personName, House personHouse)
        {
            name = personName;
            house = personHouse;
        }

        // Method to show data about the person and their house
        public void ShowData()
        {
            // Display the person's name
            Console.WriteLine($"My name is {name}");
            // Show data about the house
            house.ShowData();
            // Show data about the door of the house
            house.GetDoor().ShowData();
        }
    }

    // Define the Main method to test the program
    public static void Main()
    {
        // Create a SmallApartment with a door color of "brown"
        SmallApartment apartment = new SmallApartment("brown");

        // Create a person named "John" and assign them the small apartment
        Person person = new Person("John", apartment);

        // Show the data of the person, their house, and the door
        person.ShowData();
    }
}

Más ejercicios C# Sharp de POO Más sobre Clases

 Matriz de objetos: tabla
Cree una clase denominada "Table". Debe tener un constructor, indicando el ancho y alto de la placa. Tendrá un método "ShowData" que escribirá en la p...
 Tabla + coffetable + array
Cree un proyecto denominado "Tablas2", basado en el proyecto "Tablas". En él, cree una clase "CoffeeTable" que herede de "Table". Su método "ShowDa...
 Encriptador
Cree una clase "Encrypter" para cifrar y descifrar texto. Tendrá un método "Encrypt", que recibirá una cadena y devolverá otra cadena. Será un méto...
 Números complejos
Un número complejo tiene dos partes: la parte real y la parte imaginaria. En un número como a+bi (2-3i, por ejemplo) la parte real sería "a" (2) y la ...
 tabla + coffetable + leg
Amplíe el ejemplo de las tablas y las mesas de centro, para agregar una clase "Leg" con un método "ShowData", que escribirá "I am a leg" y luego mostr...
 Catálogo
Cree el diagrama de clases y, a continuación, con Visual Studio, un proyecto y las clases correspondientes para una utilidad de catálogo: Podrá alm...
 Número aleatorio
Cree una clase RandomNumber, con tres métodos estáticos: - GetFloat devolverá un número entre 0 y 1 utilizando el siguiente algoritmo: semilla =...
 Texto a HTML
Crear una clase "TextToHTML", que debe ser capaz de convertir varios textos introducidos por el usuario en una secuencia HTML, como esta: Hola Soy...
 Clase ScreenText
Cree una clase ScreenText, para mostrar un texto determinado en coordenadas de pantalla especificadas. Debe tener un constructor que recibirá X, Y y l...
 Clase ComplexNumber mejorada
Mejore la clase "ComplexNumber", para que sobrecargue los operadores + y - para sumar y restar números....
 Punto 3D
Cree una clase "Point3D", para representar un punto en el espacio 3D, con coordenadas X, Y y Z. Debe contener los siguientes métodos: MoveTo, que c...
 Catálogo + Menú
Mejorar el programa Catálogo, de forma que "Principal" muestre un menú que permita introducir nuevos datos de cualquier tipo, así como visualizar todo...

Juan A. Ripoll - Tutoriales y Cursos de Programacion© 2025 Todos los derechos reservados.  Condiciones legales.