Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
class Program{
/**
* ComputeStatistics takes the students’ scores array as input and computes
* and returns” the average, the standard deviation, and the median of the student
* scores
*/
private static void ComputeStatistics(int[] score, ref double avg, ref double sd, ref double median)
{
double var = 0;
Array.Sort(score);
avg = 0;
for (int i = 0; i < score.Length; i++)
{
avg += score[i];
}
avg = avg / score.Length;
// the formular of var in the assignment is wrong
for (int i = 0; i < score.Length; i++)
{
var += (score[i] - avg) * (score[i] - avg);
}
var = var / score.Length;
sd = Math.Sqrt(var);...