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
Users Online
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Latest Articles
Articles Hierarchy
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.
This C# Program Finds the Average Values of all the Array Elements.
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.
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); } }
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.