Tables and Coffee Tables Management System in C#

In this exercise, we will create a project named "Tables2," based on the existing "Tables" project. The project will include a base class "Table" that represents standard tables with a width and height. We will also introduce a derived class "CoffeeTable" that inherits from "Table" but includes a specific label indicating it is a coffee table.

Each table will have a method ShowData that prints its dimensions, while coffee tables will extend this method to add the phrase "(Coffee table)."

An array will be created to store 5 standard tables and 5 coffee tables. The sizes of the standard tables will be randomly generated between 50 and 200 cm, while coffee tables will have dimensions between 40 and 120 cm. All the tables' data will be displayed at the end.



Group

Advanced Classes in C#

Objective

1. Define a Table class with width and height attributes.
2. Implement a constructor to initialize the table dimensions.
3. Add a ShowData method to print the width and height.
4. Create a CoffeeTable class that inherits from Table.
5. Override the ShowData method in CoffeeTable to add the text "(Coffee table)."
6. In the Main method, generate an array with 5 tables and 5 coffee tables, each with random dimensions.
7. Display the data of all tables.

Create a project named "Tables2," based on the "Tables" project. In it, create a class "CoffeeTable" that inherits from "Table". Its method "ShowData", besides writing the width and height, must display "(Coffee table)."

Create an array that contains 5 tables and 5 coffee tables. The tables must have random sizes between 50 and 200 cm, and the coffee tables from 40 to 120 cm. Show all their data.

Example C# Exercise

 Copy C# Code
using System;

// Base class Table
class Table
{
    // Attributes for table width and height
    protected int width;
    protected int height;

    // Constructor to initialize the table dimensions
    public Table(int width, int height)
    {
        this.width = width;
        this.height = height;
    }

    // Method to display table data
    public virtual void ShowData()
    {
        Console.WriteLine($"Table - Width: {width} cm, Height: {height} cm");
    }
}

// Derived class CoffeeTable from Table
class CoffeeTable : Table
{
    // Constructor to initialize coffee table dimensions
    public CoffeeTable(int width, int height) : base(width, height) { }

    // Overridden method to display coffee table data
    public override void ShowData()
    {
        Console.WriteLine($"Table - Width: {width} cm, Height: {height} cm (Coffee table)");
    }
}

// Main program
class Program
{
    static void Main()
    {
        Random random = new Random();

        // Array to store tables and coffee tables
        Table[] tables = new Table[10];

        // Creating 5 standard tables with random sizes between 50 and 200 cm
        for (int i = 0; i < 5; i++)
        {
            int width = random.Next(50, 201);
            int height = random.Next(50, 201);
            tables[i] = new Table(width, height);
        }

        // Creating 5 coffee tables with random sizes between 40 and 120 cm
        for (int i = 5; i < 10; i++)
        {
            int width = random.Next(40, 121);
            int height = random.Next(40, 121);
            tables[i] = new CoffeeTable(width, height);
        }

        // Displaying the data of all tables
        Console.WriteLine("Tables Information:");
        foreach (var table in tables)
        {
            table.ShowData();
        }
    }
}

 Output

Tables Information:
Table - Width: 180 cm, Height: 75 cm
Table - Width: 90 cm, Height: 160 cm
Table - Width: 120 cm, Height: 130 cm
Table - Width: 75 cm, Height: 195 cm
Table - Width: 200 cm, Height: 180 cm
Table - Width: 100 cm, Height: 90 cm (Coffee table)
Table - Width: 80 cm, Height: 110 cm (Coffee table)
Table - Width: 50 cm, Height: 70 cm (Coffee table)
Table - Width: 60 cm, Height: 95 cm (Coffee table)
Table - Width: 115 cm, Height: 105 cm (Coffee table)

Share this C# Exercise

More C# Practice Exercises of Advanced Classes in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Basic Text Encryption and Decryption in C#

    In this exercise, we will create a class called "Encrypter" that provides basic text encryption and decryption functionality. The class will include two static methods: Encrypt and...

  • Complex Number Operations in C#

    A complex number consists of two parts: a real part and an imaginary part. In this exercise, we will create a class named ComplexNumber that will allow us to represent and perform ...

  • Enhancing Tables Classes with Legs in C#

    n this exercise, we will extend the previous example of tables and coffee tables by introducing a new class called Leg. Each table can have a leg, and the leg will contain a method...

  • Implementing a Catalog System for Multimedia Files in C#

    In this exercise, we will create a catalog utility to store information about different types of multimedia files: music, films, and computer programs. Each item will have common a...

  • Implementing a Custom Random Number Generator in C#

    In this exercise, we will create a class RandomNumber that simulates a pseudo-random number generator using a predefined algorithm. This class will contain three static methods: ...

  • Creating a Text to HTML Converter Class in C#

    In this exercise, we will create a class TextToHTML that allows the user to enter multiple text strings and convert them into an HTML sequence. This class will facilitate the conve...