C# Structs for Storing Personal Information

This C# program demonstrates the use of structs to store personal information. The first struct stores the name and date of birth of a person, where the date of birth is represented by another struct consisting of day, month, and year. The program then creates an array of persons, asks the user to input data for two persons (name and date of birth), and displays their information in a formatted output.



Group

C# Arrays, Structures and Strings

Objective

1. Define a struct for the date of birth, containing day, month, and year.
2. Define another struct for the person, which includes the name and the date of birth (using the previously defined struct).
3. Create an array of persons, allowing space for two persons.
4. Ask the user for the data of two persons, including their name and date of birth.
5. Display the information of the two persons in a readable format.

Write a C# Struct to store two data for a person:

- name and date of birth.
- The date of birth must be another struct consisting of day, month, and year.

Finally, create an array of persons, ask the user for the data of two persons, and display them.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Define the struct for Date of Birth (day, month, year)
    struct DateOfBirth
    {
        public int Day;
        public int Month;
        public int Year;
    }

    // Define the struct for Person (name and Date of Birth)
    struct Person
    {
        public string Name;
        public DateOfBirth Dob;
    }

    static void Main()
    {
        // Create an array to store two persons
        Person[] persons = new Person[2];

        // Ask the user for the first person's data
        Console.WriteLine("Enter data for Person 1:");
        persons[0] = GetPersonData();

        // Ask the user for the second person's data
        Console.WriteLine("Enter data for Person 2:");
        persons[1] = GetPersonData();

        // Display the information of both persons
        DisplayPersonInfo(persons[0]);
        DisplayPersonInfo(persons[1]);
    }

    // Method to get data for a person (name and date of birth)
    static Person GetPersonData()
    {
        Person person = new Person();

        // Ask for name
        Console.Write("Enter name: ");
        person.Name = Console.ReadLine();

        // Ask for date of birth (day, month, year)
        Console.Write("Enter day of birth: ");
        person.Dob.Day = int.Parse(Console.ReadLine());

        Console.Write("Enter month of birth: ");
        person.Dob.Month = int.Parse(Console.ReadLine());

        Console.Write("Enter year of birth: ");
        person.Dob.Year = int.Parse(Console.ReadLine());

        return person;
    }

    // Method to display person's information
    static void DisplayPersonInfo(Person person)
    {
        Console.WriteLine($"\nName: {person.Name}");
        Console.WriteLine($"Date of Birth: {person.Dob.Day}/{person.Dob.Month}/{person.Dob.Year}");
    }
}

 Output

Enter data for Person 1:
Enter name: Juan
Enter day of birth: 5
Enter month of birth: 7
Enter year of birth: 1990

Enter data for Person 2:
Enter name: Maria
Enter day of birth: 15
Enter month of birth: 11
Enter year of birth: 1985

Name: Juan
Date of Birth: 5/7/1990

Name: Maria
Date of Birth: 15/11/1985

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

  • Sorting 10 Integer Numbers in C#

    This C# program asks the user to input 10 integer numbers, each ranging from -1000 to 1000. After collecting all the numbers, the program sorts them in ascending order and then dis...

  • Randomly Placing Characters in a 2D Array in C#

    This C# program declares a 70x20 two-dimensional array of characters and randomly places 80 "X" characters in various positions within the array. After the random placement, it dis...

  • Drawing a Circumference in a 2D Array in C#

    In this C# program, we declare a 70x20 two-dimensional array of characters and "draw" a circumference with a radius of 8 inside it. The program calculates the points that make up t...

  • Managing Computer Program Records in C#

    In this C# program, we will create a system to store and manage up to 1000 records of computer programs. Each program will have the following attributes: Name, Category, Descriptio...

  • Managing To-Do Tasks in C#

    This C# program helps to manage a list of to-do tasks by storing up to 2000 tasks. For each task, the program keeps track of the date (day, month, year), a description of the task,...

  • Domestic Accounting System in C#

    This C# program is designed to manage expenses and revenues for a small domestic accounting system. The program allows the user to store up to 10,000 records for expenses and reven...