c programming 70
Assignment
Write a menu-driven C++ program to manage a class roster of student names that can grow and shrink dynamically. It should work something like this (user input highlighted in blue):
Save your time - order a paper!
Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines
Order Paper NowArray size: 0, capacity: 2_x000D_ MENU_x000D_ A Add a student_x000D_ D Delete a student_x000D_ L List all students_x000D_ Q Quit_x000D_ ...your choice: <strong>a[ENTER]</strong>_x000D_ _x000D_ Enter the student name to add: <strong>Jonas-Gunnar Iversen[ENTER]_x000D_ </strong><strong>_x000D_ </strong>Array size: 1, capacity: 2_x000D_ MENU_x000D_ A Add a student_x000D_ D Delete a student_x000D_ L List all students_x000D_ Q Quit_x000D_ ...your choice: <strong>a[ENTER]</strong>_x000D_ _x000D_ Enter the student name to add: <strong>Marcela Nogueira[ENTER]_x000D_ </strong>_x000D_ Array size: 2, capacity: 2_x000D_ MENU_x000D_ A Add a student_x000D_ D Delete a student_x000D_ L List all students_x000D_ Q Quit_x000D_ ...your choice: <strong>l[ENTER]</strong>_x000D_ _x000D_ Student Roster_x000D_ --------------_x000D_ Jonas-Gunnar Iversen_x000D_ Marcela Nogueira_x000D_ _x000D_ Array size: 2, capacity: 2_x000D_ MENU_x000D_ A Add a student_x000D_ D Delete a student_x000D_ L List all students_x000D_ Q Quit_x000D_ ...your choice: <strong>d[ENTER]_x000D_ </strong>Enter the student name to delete: <strong>Jonas-Gunnar Iversen[ENTER]</strong>_x000D_ _x000D_ Array size: 1, capacity: 2_x000D_ MENU_x000D_ A Add a student_x000D_ D Delete a student_x000D_ L List all students_x000D_ Q Quit_x000D_ ...your choice: <strong>q[ENTER]</strong>
Requirements
- Allow the menu options to be entered in either lower or upper case.
- Implement all the actions in the above menu — add, delete and list.
- Use a dynamic array of strings to store the roster, with an initial capacity of 2.
- Double the array capacity when (a) you have a new student to add, and (b) size equals capacity. You do not need to shrink the array after deletes.
- The output table should have a column heading as shown above.
- Output the array size and capacity along with the output table.
Hints
You don’t have to write functions for everything. You may just write code blocks in main, and if it makes sense for you to move any of them out of main and into functions (like a void function to cout a table of names), do so.
Would the operations be best handled with a series of if/else statements, or a case/switch statement?
There are some built-in string functions that convert to upper and lower case.
What to Submit
Submit your .cpp file and a screenshot of one run of the program that includes at least an “add” of a name and one “list” operation.