Question: Use Visual 2015 or 2017 C++ to do the following: Your friend who runs a property management company needs your help in writing a program

Use Visual 2015 or 2017 C++ to do the following: Your friend who runs a property management company needs your help in writing a program to monitor his rental properties. He wants you to write a program that uses an array to store, display, sort, and total the income for his 5 rental properties. Monthly Rental amounts for the 5 properties: 1000 560 750 1200 500 Requirements 1. Use a menu?driven program with the following commands: a. Enter rent amounts b. Display rents c. Sort rent amounts from low to high d. Display memory locations e. Exit 2. Use the following functions: a. Int getMenuItem() Displays the menu Inputs the users menu selection Validates the users menu selection Returns the users valid menu selection b. Void enterRents(int[], int) Uses a for loop to input the rent amounts into an array using standard array subscript notation c. Void displayRents (int*, int) Uses a for loop to display the contents of the rents array using pointers (not subscripts) to access the array elements d. Void displayMemoryLocations (int[], int) Uses a for loop to display the memory locations of the array elements e. Void selectionSort (int[], int) Sorts the rents array into ascending order using standard array subscript notation 3. Main Program uses a while loop with embedded switch statement to call appropriate functions based on menu selection. 4. Output must be labeled and easy to read 5. Program must be documented with the following: a. // Name b. // Date c. // Program Name d. // Description

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!