C# Program to Find the Average of an Array
Posted by Superadmin on August 15 2022 14:17:52

C# Program to Find the Average of an Array

 

 

This is a C# Program to compute average for the set of values.

Problem Description

This C# Program Computes Average for the Set of Values.

Problem Solution

Here the elements are obtained from the user and its average is found and displayed.

Program/Source Code

Here is source code of the C# Program to Compute Average for the Set of Values. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * C# Program to Compute Average for the Set of Values
 */
using System;
class program
{
    public static void Main()
    {
        int m, i, sum = 0, avg = 0;
        Console.WriteLine("Enter the Number of Terms in the Array ");
        m = int.Parse(Console.ReadLine());
        int[] a = new int[m];
        Console.WriteLine("Enter the Array Elements ");
        for (i = 0; i < m; i++)
        {
            a[i] = int.Parse(Console.ReadLine());
        }
        for (i = 0; i < m; i++)
        {
            sum += a[i];
        }
        avg = sum / m;
        Console.WriteLine("Average is {0}", avg);
        Console.ReadLine();
    }
}
Program Explanation

In this C# program, we are reading the number of terms in the array using ‘m’ variable. Then for loop is used to enter the coefficient element values of the array. Compute the values and divide the size of an array. Print the average for the set of values.

 
Runtime Test Cases
 
Enter the Number of Terms in the Array : 4
Enter the Elements
1
2
3
4
Average is 2