uses Average to get the average of all values of an integer array. : Average « LINQ « C# / C Sharp






uses Average to get the average of all values of an integer array.

 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass {
    public static void Main() {
        int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };

        double averageNum = numbers.Average();

        Console.WriteLine("The average number is {0}.", averageNum);
    }
}

 








Related examples in the same category

1.Average with int array
2.uses Average to get the average length of the words in the string array.
3.Grouped Average
4.Use Average method to calculate the average value from a query