Q:

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

belongs to collection: C# Basic Programs | basics

0

C# program to calculate the VARIANCE 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 VARIANCE of a set of given numbers is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# Program to Find the VARIANCE of a set of given numbers.

using System;
using System.Collections.Generic;

class Program
{
    private static void Main()
    {
        List<double> list = new List<double> { 1, 2, 3, 4, 5, 6};
 
        double mean     = 0;
        double variance = 0;
        double sum      = 0;

        double temp = 0;
        int loop = 0;

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

        mean = sum / (list.Count - 0);


        for (loop = 0; loop < list.Count; loop++)
        {
            temp += Math.Pow((list[loop] - mean), 2);
        }
        variance=temp / (list.Count - 0);


        Console.WriteLine("Mean    : " + mean    );
        Console.WriteLine("Variance: " + variance);
    }
}

Output:

Mean    : 3.5
Variance: 2.91666666666667
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 MEANVARIANCE of the given list of numbers. After that, we printed the calculated values on the console screen.

 

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

total answers (1)

C# Basic Programs | basics

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to calculate the Standard Deviation of ... >>
<< C# program to calculate the MEAN of a set of given...