Storing Multiple 2D Points Using an Array of Structs in C#

This exercise builds upon the previous struct-based 2D point storage by extending it to handle up to 1,000 points. A struct named `Point2D` will be used to store the x and y coordinates (short) along with RGB color components (byte). The program will utilize an array of structs to manage multiple points. Initially, it will prompt the user for data for the first two points and then display them.



Group

C# Arrays, Structures and Strings

Objective

1. Define a struct named `Point2D` with fields for coordinates and RGB colors.
2. Create an array capable of storing up to 1,000 points.
3. Ask the user for the details of the first two points.
4. Store the input data in the array.
5. Display the stored points.
6. Ensure proper validation for numerical inputs.

Write a C# program that expands the previous exercise (struct point), so that up to 1,000 points can be stored using an "array of struct". Ask the user for data for the first two points and then display them.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Defining a struct to store 2D point data with RGB color components
    struct Point2D
    {
        public short x, y;  // Coordinates
        public byte r, g, b; // RGB color values
    }

    static void Main()
    {
        const int MAX_POINTS = 1000; // Maximum number of points
        Point2D[] points = new Point2D[MAX_POINTS]; // Array to store points

        // Getting data for the first point
        Console.WriteLine("Enter data for the first point:");
        points[0] = ReadPoint();

        // Getting data for the second point
        Console.WriteLine("\nEnter data for the second point:");
        points[1] = ReadPoint();

        // Displaying entered data
        Console.WriteLine("\nStored Points:");
        DisplayPoint("Point 1", points[0]);
        DisplayPoint("Point 2", points[1]);
    }

    // Method to read a single point's data from user input
    static Point2D ReadPoint()
    {
        Point2D point;
        point.x = ReadShort("X coordinate: ");
        point.y = ReadShort("Y coordinate: ");
        point.r = ReadByte("Red component (0-255): ");
        point.g = ReadByte("Green component (0-255): ");
        point.b = ReadByte("Blue component (0-255): ");
        return point;
    }

    // Method to safely read a short value
    static short ReadShort(string message)
    {
        short value;
        while (true)
        {
            Console.Write(message);
            if (short.TryParse(Console.ReadLine(), out value))
                return value;
            Console.WriteLine("Invalid input. Please enter a valid short integer.");
        }
    }

    // Method to safely read a byte value
    static byte ReadByte(string message)
    {
        byte value;
        while (true)
        {
            Console.Write(message);
            if (byte.TryParse(Console.ReadLine(), out value))
                return value;
            Console.WriteLine("Invalid input. Please enter a number between 0 and 255.");
        }
    }

    // Method to display a point's data
    static void DisplayPoint(string name, Point2D point)
    {
        Console.WriteLine($"{name} -> X: {point.x}, Y: {point.y}, Color: RGB({point.r}, {point.g}, {point.b})");
    }
}

 Output

Enter data for the first point:
X coordinate: 10
Y coordinate: 20
Red component (0-255): 255
Green component (0-255): 0
Blue component (0-255): 0

Enter data for the second point:
X coordinate: -5
Y coordinate: 15
Red component (0-255): 0
Green component (0-255): 255
Blue component (0-255): 255

Stored Points:
Point 1 -> X: 10, Y: 20, Color: RGB(255, 0, 0)
Point 2 -> X: -5, Y: 15, Color: RGB(0, 255, 255)

Share this C# Exercise

More C# Practice Exercises of C# Arrays, Structures and Strings

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 a List of 2D Points with a Menu in C#

    This exercise expands the previous one, where an array of `Point2D` structs was used to store multiple points with x and y coordinates and RGB color values. Now, the program will p...

  • Managing a Small Book Database in C#

    This exercise involves creating a small database to store information about books, such as the title and the author. The program will be able to store up to 1,000 books, and the us...

  • Displaying a Triangle with User Name in C#

    In this exercise, the program will ask the user for their name and display a triangle pattern with the name. The triangle will start with the first letter of the name and will grad...

  • Displaying a Hollow Rectangle with User Name in C#

    In this exercise, the program will ask the user for their name and a size, and then display a hollow rectangle using the provided name. The rectangle will have the user’s name as i...

  • Displaying a Centered Triangle from User String in C#

    In this exercise, the program will ask the user to input a string, and then display a centered triangle with each line progressively displaying one more character from the string. ...

  • City Database Management System in C#

    This program will allow you to manage a database of cities. You can store the city names and their population (up to 500 cities). The program will include a menu that provides seve...