Users Online

· Guests Online: 7

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

C# Program to Find the Average of All the Array Elements

C# Program to Find the Average of All the Array Elements

 

 

This is a C# Program to find the average values of all the array elements.

Problem Description

This C# Program Finds the Average Values of all the Array Elements.

Problem Solution

Here the array elements are obtained from the user and the sum is first calculated. Average is then found by dividing the sum by the number of terms.

Program/Source Code

Here is source code of the C# Program to Find the Average Values of all the Array Elements. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * C# Program to Find the Average Values of all the Array Elements
 */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class program
{
    public void sumAverageElements(int[] arr, int size)
    {
 
        int sum = 0;
       int average = 0;
        for (int i = 0; i < size; i++)
        {
            sum += arr[i];
        }
        average = sum / size; 
        Console.WriteLine("Sum Of Array is : " + sum);
        Console.WriteLine("Average Of Array is : " + average);
        Console.ReadLine();
    }
    public static void Main(string[] args)
    {
        int size;
        Console.WriteLine("Enter the Size :");
        size = Convert.ToInt32(Console.ReadLine());
        int[] a = new int[size];
        Console.WriteLine("Enter the Elements of the Array : ");
        for (int i = 0; i < size; i++)
        {
            a[i] = Convert.ToInt32(Console.ReadLine());
        }
        int len = a.Length;
        program pg = new program();
        pg.sumAverageElements(a, len);
    }
}
Program Explanation

In this C# program, we are reading the size of an array using ‘size’ variable. Using for loop we are entering the coefficient values of an array.

 

The sumAverageElements() function is used to compute the sum of coefficient value. Find the value of ‘average’ variable by dividing the value of ‘sum’ variable by the value of ‘size’ variable. Print the average values of all the array elements.

 

 

 

Runtime Test Cases
 
Enter the Size : 
5
Enter the Elements of the Array :
10
20
30
40
50
Sum of the Array is : 150
Average of the Array is : 30

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 1.40 seconds
15,067,376 unique visits