Create a Table Class with Random Dimensions in C#

In this exercise, you will create a class named Table that represents a table with specific dimensions, namely width and height. The class will have a constructor that accepts these dimensions as parameters. Additionally, it will have a method called ShowData that displays the dimensions of the table on the screen. The goal is to create an array of 10 tables, where each table has random dimensions (width and height) between 50 and 200 cm. You will then display the data of each table.



Group

Advanced Classes in C#

Objective

1. Create a class named Table with two private attributes: width and height (both of type double).
2. Implement a constructor to initialize the table with width and height.
3. Implement a method ShowData that prints the width and height of the table.
4. In the Main method, create an array of 10 Table objects, each having random width and height values between 50 and 200 cm.
5. Display the dimensions of all the tables using the ShowData method.

Create a class Table with width and height, initialize the tables with random sizes, and display their data.

Example C# Exercise

 Copy C# Code
using System;

public class Table
{
    // Private fields for the table's dimensions
    private double width;
    private double height;

    // Constructor to initialize the table's width and height
    public Table(double width, double height)
    {
        this.width = width;  // Set the width of the table
        this.height = height;  // Set the height of the table
    }

    // Method to display the table's dimensions
    public void ShowData()
    {
        // Print the width and height of the table
        Console.WriteLine($"Table - Width: {width} cm, Height: {height} cm");
    }
}

public class Program
{
    public static void Main()
    {
        Random rand = new Random(); // Random object to generate random numbers

        // Create an array to hold 10 tables
        Table[] tables = new Table[10];

        // Initialize each table with random dimensions between 50 and 200 cm
        for (int i = 0; i < tables.Length; i++)
        {
            double randomWidth = rand.Next(50, 201);  // Random width between 50 and 200
            double randomHeight = rand.Next(50, 201); // Random height between 50 and 200
            tables[i] = new Table(randomWidth, randomHeight);  // Create a new table with random dimensions
        }

        // Display the data of all tables
        foreach (Table table in tables)
        {
            table.ShowData();  // Show the dimensions of each table
        }
    }
}

 Output

Table - Width: 182 cm, Height: 121 cm
Table - Width: 123 cm, Height: 189 cm
Table - Width: 68 cm, Height: 198 cm
Table - Width: 145 cm, Height: 104 cm
Table - Width: 179 cm, Height: 168 cm
Table - Width: 120 cm, Height: 116 cm
Table - Width: 153 cm, Height: 167 cm
Table - Width: 101 cm, Height: 75 cm
Table - Width: 61 cm, Height: 149 cm
Table - Width: 55 cm, Height: 153 cm

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#.

  • Managing Employees and Salaries in a Company in C#

    In this exercise, we will create a class hierarchy to manage employees in a company. The main class, Employee, will store basic information such as name, salary, and position. It w...

  • 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 wi...

  • 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...