Home /
Expert Answers /
Computer Science /
cis-115-c-programming-thank-you-write-a-program-that-keeps-track-for-presenters-for-coll-pa835
(Solved): CIS 115 C++ Programming
Thank you
Write a program that keeps track for presenters for Coll ...
CIS 115 C++ Programming
Thank you
Write a program that keeps track for presenters for Colleges in USA. The program should use a structure to store the data about a presenter: Name Presentation topic Address Telephone Fee required The program should use an array of at least 3 presenters based on 1 structure. The user should be able to enter data into the array, change the contents of any element of the array and display the data stored in the array. The program should have a menu driven interface with the options to enter, change, and display the structure data. Input validation: When the data for a new presenter is entered, be sure the user enters data for all fields. No negative amounts should be entered for a presenter's fee.
You will use 1 structure only and then manipulate that for working with the information. The program should use an array of at least 3 presenters based on 1 structure ( 3 variables of the same structure). An example of the structure: struct Presenter \{ string Name; string Presentationtopic: string Address; string Telephone; string address double Fee; \}