You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
795 B
C#

/*
* 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();
}
}
/*
Enter the Number of Terms in the Array : 4
Enter the Elements
1
2
3
4
Average is 2