For count=1 to 2 do
Prompt for cust_email
Read cust_email
Prompt for movie_title
Read movie_title
IF movie_rating = ‘R’ THEN
Read cust_age
IF cust_age < 17 THEN
Display ‘Customer does not meet minimum age’
ENDIF
ENDIF
Read rental_quant
Sales_tax = 5%
Total_bill = (rental_quant * $1.50) + sales_tax
Display cust_email, total_bill
END
END FOR
Modify the pseudocode above to contain the following modules:
– Enter Customer Email
– Calculate the Bill
– Print the Bill
After the customer has finished entering the movie titles, the system will calculate and print the bill.
Create a hierarchy chart for the modules.
Then modify the pseudocode for the problem above to:
• Enter the MovieName into an array named movies and QuantityonHand into an array named MovieQuantity The information for the movies is below. (QuantityonHand = -999 when end the file is reached)
• Update Movie inventory (add to inventory/deduct from inventory)
• Calculate and print the customer bill.
• Calculate and print the total daily sales.
• Calculate and print the average number of movies rented.
The customer will be prompted to enter their email address and whether they want to rent or return a movie.
Rent a movie -after the customer has finished entering the movie title(s), the system will calculate and print the bill.
Return a movie – a message is printed on the screen after returning the movie(s).
Modify the hierarchy chart to include the new modules
MovieTitle Movie Rating Movie Genre Movie Release Date Quantity in Stock
Braveheart PG13 War 1995 5
Super Troopers R Comedy 2001 3
Little Mermaid G Children 1989 2
Crank R Action 2006 4
Blow R Drama 2001 1