Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using C# Design and implement a program (name it MinMaxAvg) that defines three methods as follows: Method max (int x, int y, int z) returns

Using C# Design and implement a program (name it MinMaxAvg) that defines three methods as follows:

Method max (int x, int y, int z) returns the maximum value of three integer values.

Method min (int X, int y, int z) returns the minimum value of three integer values.

Method average (int x, int y, int z) returns the average of three integer values.

In the main method, test all three methods with different input value read from the user. Document your code and properly label the input prompts and the outputs as shown below.

Sample run 1:

You entered: 20, 8, 12

Max value: 20

Min value: 8

Average value: 13

Sample run 2:

You entered: 1, 2, 3

Max value: 3

Min value: 1

Average value: 2

Sample run 3:

You entered: 10, 5, 25

Max value: 25

Min value: 5

Average value: 13

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

1. Identify three approaches to culture.

Answered: 1 week ago

Question

2. Define communication.

Answered: 1 week ago