Enter the Number of Terms in the Array : 4 Enter the Elements 1 2 3 4 Average is 2
This is a C# Program to compute average for the set of values.
This C# Program Computes Average for the Set of Values.
Here the elements are obtained from the user and its average is found and displayed.
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(); } }
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.
Enter the Number of Terms in the Array : 4 Enter the Elements 1 2 3 4 Average is 2