Question: NEEDED IN BASIC C# Class Math (from the System namespace) of Microsoft .NET Framework Class Library has a static method Min(x, y). It returns the
NEEDED IN BASIC C#
Class Math (from the System namespace) of Microsoft .NET Framework Class Library has a static method Min(x, y). It returns the smaller value of x and y. Create a C# application to do the following. Ask the user to enter three values. Compare them and identify the smallest one. For example, if the user enters 4.7, 8 and 2.25, then program will report that 2.25 is the smallest value. Do not use if, ifelse statement or conditional operator to compare values. Use the Math.Min method. You may need to use it more than once.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
