Create a second Raptor program that allows the user to continuously enter names and quantity ordered of multiple customers until the user enters a name with "QUIT". Then the program needs to calculate the discount rate, final price, and final bill for each customer (after discount).
Price for each item is $1.99.
Quantity ordered in the range from 1-5: no discount.
Quantity ordered in the range from 6-15: 10% discount.
Quantity ordered in the range from 16-30: 20% discount.
Quantity ordered greater than 30: 30% discount.
Output the final bill for each customer based on their ordered quantity.
Feel free to ask if you need further assistance!