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