https://github.com/singhxtushar/menu_driven_fun
This program is about using a collection (list) of integers and allowing the user to select options from a menu to perform operations on the list.
https://github.com/singhxtushar/menu_driven_fun
Last synced: 8 months ago
JSON representation
This program is about using a collection (list) of integers and allowing the user to select options from a menu to perform operations on the list.
- Host: GitHub
- URL: https://github.com/singhxtushar/menu_driven_fun
- Owner: SINGHxTUSHAR
- Created: 2023-03-22T11:10:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-22T11:14:33.000Z (over 2 years ago)
- Last Synced: 2023-06-01T08:49:25.033Z (over 2 years ago)
- Language: C++
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MENU_DRIVEN_FUN
This program is about using a collection (list) of integers and allowing the user to select options from a menu to perform operations on the list.program should display a menu options to the user as follows:
P - Print numbersA - Add a number
M - Display mean of the numbers
S - Display the smallest number
L - Display the largest number
Q - Quit
Enter your choice:
The program should only accept valid choices from the user, both upper and lowercase selections should be allowed.
If an illegal choice is made, you should display, "Unknown selection, please try again" and the menu options should be
displayed again