I need to add to this code so that after it displays the unique values entered in also gives me Min Value Entered, Max Value Entered, Sum of Values Entered, and Average of Values Entered.  So my C# assignment is visual studio code is this... class Program     {         static void Main(string[] args)         {             UniqueValueApp myApp = new UniqueValueApp();             myApp.GetValues();             myApp.DisplayValues();             Console.ReadLine();         }     }     class UniqueValueApp     {         private List _list = new List();         public void GetValues()         {             int value;             bool result;             Console.Write("Please enter an integer: ");             string input = Console.ReadLine();             while (input != null)             {                 result = int.TryParse(input, out value);                 if (result)                 {                     if (value > -1 && value < 100)                     {                         if (!_list.Contains(value))                         {                             _list.Add(value);                         }                         if (_list.Count == 5)                         {                             break;                         }                     }                     else                     {                         Console.WriteLine("Value out of range.");                     }                 }                 Console.Write("Please enter an integer: ");                 input = Console.ReadLine();             }         }         public void DisplayValues()         {             Console.WriteLine("Unique values entered: ");             foreach (int number in _list)             {                 Console.Write(number+" ");             }         }     }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

I need to add to this code so that after it displays the unique values entered in also gives me Min Value Entered, Max Value Entered, Sum of Values Entered, and Average of Values Entered. 

So my C# assignment is visual studio code is this...

class Program
    {
        static void Main(string[] args)
        {
            UniqueValueApp myApp = new UniqueValueApp();
            myApp.GetValues();
            myApp.DisplayValues();
            Console.ReadLine();
        }
    }

    class UniqueValueApp
    {
        private List<int> _list = new List<int>();

        public void GetValues()
        {
            int value;
            bool result;
            Console.Write("Please enter an integer: ");
            string input = Console.ReadLine();

            while (input != null)
            {
                result = int.TryParse(input, out value);

                if (result)
                {
                    if (value > -1 && value < 100)
                    {
                        if (!_list.Contains(value))
                        {
                            _list.Add(value);
                        }
                        if (_list.Count == 5)
                        {
                            break;
                        }
                    }
                    else
                    {
                        Console.WriteLine("Value out of range.");
                    }
                }
                Console.Write("Please enter an integer: ");
                input = Console.ReadLine();
            }
        }

        public void DisplayValues()
        {
            Console.WriteLine("Unique values entered: ");
            foreach (int number in _list)
            {
                Console.Write(number+" ");
            }
        }
    }
**Transcript of Console Output:**

1. **Input Prompts:**
   - Please enter an integer value: 0
   - Please enter an integer value: 45
   - Please enter an integer value: 65
   - Please enter an integer value: 92
   - Please enter an integer value: 7

2. **Unique Values Entered:**
   - 0 45 65 92 7

3. **Calculated Outputs:**
   - Min Value Entered: 0
   - Max Value Entered: 92
   - Sum of Values Entered: 209
   - Average of Values Entered: 41

**Explanation:**

- The program prompts the user to enter integer values.
- It then identifies the unique values from the input.
- The minimum and maximum values among the entries are determined.
- The sum of all entered values is calculated.
- Finally, the average of these values is computed.

This can be a beginner-level programming task for students to understand user input, data storage, and simple arithmetic operations in programming.
Transcribed Image Text:**Transcript of Console Output:** 1. **Input Prompts:** - Please enter an integer value: 0 - Please enter an integer value: 45 - Please enter an integer value: 65 - Please enter an integer value: 92 - Please enter an integer value: 7 2. **Unique Values Entered:** - 0 45 65 92 7 3. **Calculated Outputs:** - Min Value Entered: 0 - Max Value Entered: 92 - Sum of Values Entered: 209 - Average of Values Entered: 41 **Explanation:** - The program prompts the user to enter integer values. - It then identifies the unique values from the input. - The minimum and maximum values among the entries are determined. - The sum of all entered values is calculated. - Finally, the average of these values is computed. This can be a beginner-level programming task for students to understand user input, data storage, and simple arithmetic operations in programming.
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Graphical User Interface
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education