Calculating the Average Marks of Two Groups in C#

This exercise focuses on working with two-dimensional arrays in C#. The program will ask the user to enter the marks of 20 pupils, divided into two groups of 10 students each. After collecting the data, the program will calculate and display the average marks for each group.



Group

C# Arrays, Structures and Strings

Objective

1. Declare a 2x10 two-dimensional array to store marks for two groups.
2. Prompt the user to enter the marks for each student in both groups.
3. Calculate the average marks separately for each group.
4. Display the calculated averages for both groups.

Write a C# program to ask the user for marks for 20 pupils (2 groups of 10, using a two-dimensional array), and display the average for each group.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Define a 2D array for two groups of 10 students each
        int[,] marks = new int[2, 10];

        // Loop through each group
        for (int group = 0; group < 2; group++)
        {
            Console.WriteLine($"Enter marks for Group {group + 1}:");

            // Loop through each student in the group
            for (int student = 0; student < 10; student++)
            {
                Console.Write($"Student {student + 1}: ");
                
                // Read and validate input
                while (!int.TryParse(Console.ReadLine(), out marks[group, student]))
                {
                    Console.Write("Invalid input. Enter a valid mark: ");
                }
            }
        }

        // Calculate and display the average for each group
        for (int group = 0; group < 2; group++)
        {
            int sum = 0;

            for (int student = 0; student < 10; student++)
            {
                sum += marks[group, student];
            }

            double average = sum / 10.0;
            Console.WriteLine($"Average marks for Group {group + 1}: {average:F2}");
        }
    }
}

 Output

Enter marks for Group 1:
Student 1: 80
Student 2: 75
Student 3: 90
Student 4: 85
Student 5: 88
Student 6: 92
Student 7: 78
Student 8: 84
Student 9: 80
Student 10: 86

Enter marks for Group 2:
Student 1: 70
Student 2: 65
Student 3: 75
Student 4: 80
Student 5: 72
Student 6: 78
Student 7: 85
Student 8: 88
Student 9: 74
Student 10: 76

Average marks for Group 1: 83.8
Average marks for Group 2: 76.3

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

  • Statistical Data Management Program in C#

    This exercise focuses on creating a statistical program in C# that allows users to manage numerical data dynamically. The program provides a menu with different options: adding new...

  • Struct for Storing 2D Points with RGB Color in C#

    This exercise focuses on using C# structures (structs) to define and manage 2D points with associated RGB color values. Each point will have x and y coordinates (short) and three c...

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

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