In C#, Write a program named Averages that includes a method named Average that accepts any number of numeric parameters, displays them, and displays their average. 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.

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter8: Advanced Method Concepts
Section: Chapter Questions
Problem 8RQ
icon
Related questions
Question

In C#, Write a program named Averages that includes a method named Average that accepts any number of numeric parameters, displays them, and displays their average.

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.

3
E
</>
Instructions
Write a program named
Averages that includes a
method named Average
that accepts any number
of numeric parameters,
displays them, and
displays their average.
For example, if 7 and 4
were passed to the
method, the output would
be:
74
Average is 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.
Averages.cs
1 using static System.Console;
2 public class Averages
3 {
4 public static void Main()
{
+56N
8
O
}
+
}
// Write your main here
Transcribed Image Text:3 E </> Instructions Write a program named Averages that includes a method named Average that accepts any number of numeric parameters, displays them, and displays their average. For example, if 7 and 4 were passed to the method, the output would be: 74 Average is 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. Averages.cs 1 using static System.Console; 2 public class Averages 3 { 4 public static void Main() { +56N 8 O } + } // Write your main here
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
void method
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr