Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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 the following form for recording purposes:
Type of Ticket | Ticket Price | # of Tickets Sold | Cost |
Orchestra | 100 | 10 | 1000 |
Your program must have the following:
- An introductory statement that allows the user to understand what type of program they are running.
- Variable declarations
- User input acceptance
- Decision statement - that determines what the user entered and will give the price of the ticket.
- Proper mathematical calculations
- Proper output - so the user can see how much the total of the tickets cost.
- You must provide the following:
- Your code
- Screenshot of your fully functioning program with inputs/outputs
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started