Solve in C++ Programming 1 (Please include comments)
When your program starts the following Main menu is displayed: Main menu. 1. Enter number of seat sold per class/show 2. Show highest sales per seat/class 3. Show lowest sales per seat/class 4. Exit program Enter your selection: Implement each of the tasks indicated in the Main menu. TESTING THE PROGRAM. - Run the program. - Main menu is displayed. - Select option 1 and press enter. - Enter the number of seats sold per class for show 1. After finishing these entries, the program displays Main menu. - Select option 2 and press enter. The program must show the highest sales per seat/class. For show 1 the output must be: $833. After showing this result the program displays the Main menu. - Select option 3 and press enter. The program must show the lowest sales per seat/class. For show 1 the output must be: $250. After showing this result the program displays Main menu. - Select option 1 and press enter. - Enter the number of seats sold per class for show 2. After finishing these entries, the program displays Main menu. - Select option 2 and press enter. The program must show the highest sales per seat/class. For show 2 the output must be: $1000. After showing this result the program displays the Main menu. - Select option 3 and press enter. The program must show the lowest sales per seat/class. For show 2 the output must be: $306. After showing this result the program displays Main menu. - Select option 1 and press enter. - Repeat the whole process with data for show 3. - After finishing with the procedure with data for show 3 the program displays Main menu. Select option 4 to terminate the program. Your program must provide prompts like: - Please, enter the number of seats for class X : - The highest sale for this show is the class X with a total of: $xx.xx. - The lowest sale for this show is the class X : $x xxx.xx