C# - Find the Mean of Numbers

Here, we are going to learn how to calculate the MEAN of a set of given numbers in C#?
Submitted by Nidhi, on September 21, 2020 [Last updated : March 17, 2023]

Finding Mean of Numbers

Here, we will calculate the MEAN of a set of given numbers and then print the calculated MEAN on the console screen.

C# program to find the mean of given numbers

The source code to calculate the MEAN of a set of given numbers is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# - Find the Mean of Numbers.

using System;
using System.Collections.Generic;

class Demo
{
    private static void Main()
    {
        List<double> list = new List<double> { 11, 22, 33, 44, 55};
 
        double mean= 0;
        double sum = 0;

        int loop = 0;

        for (loop = 0; loop < list.Count; loop++)
        {
            sum += list[loop];
        }

        mean = sum / (list.Count - 0);
 
        Console.WriteLine("Mean: "+mean);
    }
}

Output

Mean: 33
Press any key to continue . . .

Explanation

Here, we created a class Demo that contains a static method Main(). The Main() method is the entry point of the program. Here we created the list of numbers, and then calculate the MEAN of the given list of numbers. After that, we printed the calculated MEAN on the console screen.

C# Basic Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.