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 thes...
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...
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...
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...
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 ...
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...
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...
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: ...
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...
In this exercise, we will create three classes to manage displaying text at specific positions on the screen. The main class ScreenText will display text at given X and Y coordinat...
In this exercise, we will improve the ComplexNumber class to support operator overloading for addition and subtraction of complex numbers. Complex numbers consist of a real part an...
In this exercise, we will create a Point3D class to represent a point in a 3D space with three coordinates: X, Y, and Z. This class will provide methods to move the point to new co...
In this exercise, we will enhance the Catalog program to include a user-friendly menu in the Main method. This menu will allow users to add new items such as music files, films, an...