Hi, I'm having a little trouble with an assignment for my C# class. (The professor doesn't explain specifics, just the basics, and he isn't any help, he's extremely shy and awkward)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assignment_2_ITM_225
{
class Program
{
static void Main(string[] args)
{
int[] Inputs = new int[5];
int intValue = 0;
float Average = 0;
float Variance = 0;
for (int i = 0; i < Inputs.Length; i++)
{
while (intValue < 10 || intValue > 50)
{
Console.Clear();
Console.WriteLine("Please enter {0} more integers between 10 and 50: ", Inputs.Length - i);
intValue = Convert.ToInt32(Console.ReadLine());
}
Inputs[i] = intValue;
intValue = 0;
}
Average = (float)(Inputs.Sum() / 5.0f);
Console.Clear();
for (int i = 0; i < Inputs.Length; i++)
{
Console.WriteLine(Inputs[i]);
Variance += (Inputs[i] - Average) * (Inputs[i] - Average);
}
while ()
{
for(i++; < i;)
{
}
}
Console.WriteLine("The average of the integers is {0}\n", Average);
Variance /= 4;
Console.WriteLine("The variance of the integers is {0}\n", Variance);
Console.ReadKey();
}
}
}
Here is what I have so far, my current tasks are:
1. (Worth 30 points) Modify your assignment 2 application so that the user’s inputs are stored in an integer array with 5 elements. Compute the mean and variance using the elements of the integer array. Both the mean and variance values should be of type float. Use the following formula for the variance:
- (Worth 60 points) Sort the integer elements within the array from lowest (element 0) to highest (element 4). Do not use the preexisting Array.Sort method; code your own. Output the sorted array as follows:
Element 0 => smallest value
Element 1 => next smallest value
Element 2 => next smallest value
Element 3 => next smallest value
Element 4 => Largest value
Suggestions: Use a for() loop inside of a while() loop. Probably the easiest way to code this is to compare array element i with element i+1 in the for() loop. If i+1 < i then swap the values. Be careful not to overflow the array. The while() loop checks whether a swap occurred. When you can go through the array without swapping any values then the array is sorted and you can exit the while() loop.
**For the first assignment, I'm not sure what he's asking? I already have the inputs in an array, but I'm not sure if I have it with 5 elements.
For the second step, I have the for and while loop partially set up, I'm not sure how to swap the values in a for loop or check if there was a swap in the while loop. Thank you very much for any help. **