Write a program that prints a menu of choices: L -> Find the lowest value in a file H -> Find the highest value in a file A -> Find the average value in a file Q -> Quit Choose: hming Fundamentals home > 9.13: LAB: File Statistics E zyBooks ca Invalid choice. Re-enter: If the user selects any valid choice other than Quit, the program prompts the user to enter the file name, Enter input file name: then reads the content of the file and prints the value requested (highest value, lowest value or average value). Highest value is 0 Lowest value is 0 Average value is 0 If the file cannot be opened or is empty, the program should display the message: File empty or could not open file Then the program displays the menu again. If the user selects Quit, the program prints "Exiting" and terminates. Additional requirements - Make sure you meet all the requirements to avoid losing points • You are not allowed to use arrays • You are required to implement and use the following functions. These functions take as parameters a string (file name) passed by value, and a double passed by reference. Each function returns a bool which is true if the file open is successful and if the file is not empty, false otherwise. If the file open is successful and the file is not empty, the function passes back the appropriate value froma values in the file through the reference variable. If the file open failed, or the file is empty, the function does not pass back a value in the reference variable. bool averageFromFile (string filename, doubles value) bool lowestFromFile (string filename, doubles value) bool highestFromFile (string filename, doubles value)

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

C++ please use file names below

**LAB: File Statistics**

### Task Overview:
Create a program that provides a menu offering several file operations:

- **L**: Find the lowest value in a file
- **H**: Find the highest value in a file
- **A**: Find the average value in a file
- **Q**: Quit the program

Prompt the user with:
```
Choose:
```

### Program Behavior:

- **Invalid Choice**: If an invalid option is chosen, display:
  ```
  Invalid choice. Re-enter:
  ```

- **Valid Choice**:
  - Prompt for a file name:
    ```
    Enter input file name:
    ```
  - Read the file and output the requested value:
    - **Highest value**: 
      ```
      Highest value is 0
      ```
    - **Lowest value**:
      ```
      Lowest value is 0
      ```
    - **Average value**:
      ```
      Average value is 0
      ```

- **File Error**:
  - If the file is empty or cannot be opened, show:
    ```
    File empty or could not open file
    ```

- **Quit**: If "Q" is selected, print "Exiting" and end the program.

### Additional Requirements:

- **Prohibited**: Arrays are not allowed.
- **Required Functions**: Implement these functions, taking a string (filename) and passing a double by reference. Return a bool indicating success (non-empty file) or failure:
  
  ```cpp
  bool averageFromFile(string filename, double& value)
  bool lowestFromFile(string filename, double& value)
  bool highestFromFile(string filename, double& value)
  ```

### Files:
- **Downloadable files**: 
  - empty.txt
  - in.txt

*Ensure all requirements are met to avoid losing points.*
Transcribed Image Text:**LAB: File Statistics** ### Task Overview: Create a program that provides a menu offering several file operations: - **L**: Find the lowest value in a file - **H**: Find the highest value in a file - **A**: Find the average value in a file - **Q**: Quit the program Prompt the user with: ``` Choose: ``` ### Program Behavior: - **Invalid Choice**: If an invalid option is chosen, display: ``` Invalid choice. Re-enter: ``` - **Valid Choice**: - Prompt for a file name: ``` Enter input file name: ``` - Read the file and output the requested value: - **Highest value**: ``` Highest value is 0 ``` - **Lowest value**: ``` Lowest value is 0 ``` - **Average value**: ``` Average value is 0 ``` - **File Error**: - If the file is empty or cannot be opened, show: ``` File empty or could not open file ``` - **Quit**: If "Q" is selected, print "Exiting" and end the program. ### Additional Requirements: - **Prohibited**: Arrays are not allowed. - **Required Functions**: Implement these functions, taking a string (filename) and passing a double by reference. Return a bool indicating success (non-empty file) or failure: ```cpp bool averageFromFile(string filename, double& value) bool lowestFromFile(string filename, double& value) bool highestFromFile(string filename, double& value) ``` ### Files: - **Downloadable files**: - empty.txt - in.txt *Ensure all requirements are met to avoid losing points.*
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 10 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY