Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The manager of a football stadium wants you to write a program that calculates t

ID: 3628745 • Letter: T

Question

The manager of a football stadium wants you to write a program that calculates the total ticket sales after each game. The four types of tickets are box, sideline, premium, and general admission. After each game, data is stored in a file in the following form:
ticketPrice numberOfTicketsSold
.
.
.
Sample data are shown below:
250 5750
100 28000
50 35750
25 18750
The first line indicates that the box ticket price is $250 and that 5750 tickets were sold at that price. Output the number of tickets sold and the total sale amount. Format your output with two decimal places.


Explanation / Answer

Hope this helps! Make sure to replace the "text.txt" with whatever your file is called, and place it in the same folder. #include #include #include //For formatting using namespace std; int main() { //Create an ifstream object and open the text file ifstream file("text.txt"); int ticketPrice = 0, numberOfTicketsSold = 0; // Create the two variables double totalSaleAmount = 0.0; cout