A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C# program to calculate the MEAN of a set of given numbers
Q:

C# program to calculate the MEAN of a set of given numbers

0

C# program to calculate the MEAN of a set of given numbers

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

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# program to calculate the MEAN of a set of given 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.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now