Please help me develop executable code in C++:
//The manager of a football stadium wants you to write a program
that calculates the total ticket
//sales after each game. There are four types of tickets sold: box,
sideline, premium,
//and general admission.
//After each game, the 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 ticket price is $250 and 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.
We need at least 10 more requests to produce the answer.
0 / 10 have requested this problem solution
The more requests, the faster the answer.
Please help me develop executable code in C++: //The manager of a football stadium wants you...
The manager of a football stadium wants you to write a program that calculates the total ticket sales after each game. There are four types of tickets—box, sideline, premium, and general admission. Data is read from the keyboard in the following form: ticketPrice numberOfTicketsSold, that indicates that the box ticket price is ticketPrice and that numberOfTicketsSold tickets were sold at that price. Sample data are shown below: 250 5750 100 28000 50 35750 25 18750 Output the number of...
For C# The manager of an event venue wants you to write a program that calculates the total ticket sales after each event. There are four types of tickets: orchestra ($100) floor ($75) tier 1 ($50) tier 2 ($40) tier 3 ($35) The user should be asked for what level do they have tickets and how many. Please note: this program should only accept one type of ticket. After each event, data is input by the user and then displayed...
In Java Burdell and the Buzz Problem Description As an aspiring band manager, you need to promote your band and expand publicity. Being hip with the times, you know that social media can make or break a band’s popularity. So, you decide to bring some ‘lucky’ Georgia Tech students to spread the good word! Solution Description Write the Concert, Musician, and Fan classes to guide your band on their rock star journey. You will design these classes from scratch following...