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 present a menu, allowing the user to choose different operations, such as adding a new point, displaying all stored points, calculating the average of x and y coordinates, or exiting the program. The maximum number of points that can be stored remains 1,000.



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. Display a menu with the following options:
- Add a new point
- Display all stored points
- Calculate and display the average values for x and y coordinates
- Exit the program
4. Implement user input validation for numerical entries.
5. Ensure the menu runs in a loop until the user chooses to exit.

Write a C# program that expands the previous exercise (array of points), so that it displays a menu, in which the user can choose to:
- Add data for one point
- Display all the entered points
- Calculate (and display) the average values for x and y
- Exit the program

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
        int count = 0; // Number of points stored

        while (true)
        {
            Console.WriteLine("\nMenu:");
            Console.WriteLine("1. Add a new point");
            Console.WriteLine("2. Display all points");
            Console.WriteLine("3. Calculate average x and y values");
            Console.WriteLine("4. Exit");
            Console.Write("Choose an option: ");

            string option = Console.ReadLine();
            Console.WriteLine();

            switch (option)
            {
                case "1":
                    if (count < MAX_POINTS)
                    {
                        points[count] = ReadPoint();
                        count++;
                        Console.WriteLine("Point added successfully.");
                    }
                    else
                    {
                        Console.WriteLine("Error: Maximum number of points reached.");
                    }
                    break;

                case "2":
                    if (count == 0)
                    {
                        Console.WriteLine("No points stored yet.");
                    }
                    else
                    {
                        Console.WriteLine("Stored Points:");
                        for (int i = 0; i < count; i++)
                        {
                            DisplayPoint($"Point {i + 1}", points[i]);
                        }
                    }
                    break;

                case "3":
                    if (count == 0)
                    {
                        Console.WriteLine("No points stored yet.");
                    }
                    else
                    {
                        CalculateAverage(points, count);
                    }
                    break;

                case "4":
                    Console.WriteLine("Exiting the program.");
                    return;

                default:
                    Console.WriteLine("Invalid option. Please choose a valid number.");
                    break;
            }
        }
    }

    // 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})");
    }

    // Method to calculate and display the average x and y values
    static void CalculateAverage(Point2D[] points, int count)
    {
        int sumX = 0, sumY = 0;
        for (int i = 0; i < count; i++)
        {
            sumX += points[i].x;
            sumY += points[i].y;
        }

        double avgX = (double)sumX / count;
        double avgY = (double)sumY / count;

        Console.WriteLine($"Average X: {avgX:F2}, Average Y: {avgY:F2}");
    }
}

 Output

Menu:
1. Add a new point
2. Display all points
3. Calculate average x and y values
4. Exit
Choose an option: 1

X coordinate: 10
Y coordinate: 20
Red component (0-255): 255
Green component (0-255): 0
Blue component (0-255): 0
Point added successfully.

Menu:
1. Add a new point
2. Display all points
3. Calculate average x and y values
4. Exit
Choose an option: 1

X coordinate: -5
Y coordinate: 15
Red component (0-255): 0
Green component (0-255): 255
Blue component (0-255): 255
Point added successfully.

Menu:
1. Add a new point
2. Display all points
3. Calculate average x and y values
4. Exit
Choose an option: 2

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

Menu:
1. Add a new point
2. Display all points
3. Calculate average x and y values
4. Exit
Choose an option: 3

Average X: 2.50, Average Y: 17.50

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

  • Imitating the Unix SysV Banner Utility in C#

    This program imitates the basic Unix SysV "banner" utility. The program will take a string input from the user and display it in large ASCII characters, similar to the "banner" com...