Question: C# cengage mindtap Write a program named Averages that includes a method named Averagethat accepts any number of numeric parameters, displays them, and displays their
C# cengage mindtap
Write a program named Averages that includes a method named Averagethat accepts any number of numeric parameters, displays them, and displays their average.
For example, if 7 and 4were passed to the method, the output would be:
7 4 -- Average is 5.5
Test your function in your Main(). Tests will be run against Average() to determine that it works correctly when passed one, two, or three numbers, or an array of numbers.
here is the base code given:
using static System.Console;
public class Averages
{
public static void Main()
{
// Write your main here
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
