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.
advertisement
advertisement
Runtime Test Cases
Enter the Number of Terms in the Array : 4 Enter the Elements 1 2 3 4 Average is 2
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Next Steps:
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Practice MCA MCQs
- Apply for Computer Science Internship
- Buy MCA Books
- Apply for C# Internship
- Practice Computer Science MCQs