Write a program and flow chart
August 1st, 2020
Write a program and flowchart.
The program should calculate total cost for the number of movie tickets sold for Adults, Children, and Students; and then calculating the total of combined sales for all 3 categories.
Then, it asks for customer numbers, and sales by customer. At the end, it prints out the customer number, the customer sales, and then the total sales and average sales.
- You must use three different arrays – These are, in effect, parallel arrays
- One for Adult Movie Ticket Sales
- One for Child Movie Ticket Sales
- One for Student Movie Ticket Sales
- Remember to use a “for” loop for each array
- You should have totals in $ amount for:
- Adult Movie Tickets sold
- Children Movie Tickets sold
- Student Movie Tickets sold
- Overall totals, combining all 3 categories
- Hints and Suggestions:
- You can set your own movie prices – for example, adult ticket is $15
- You can set how many tickets have been sold in each category – for example, 5 adult tickets sold
- You can also write the program to ask the user for this input, but this is not required
- At the end, it prints out the total dollar amount spent on sales for Adult Movie Tickets, Children Movie Tickets, and Student Movie Tickets; and then an overall total spent
– Output attached