In this exercise, you will be writing a simple java program to explore the decision making mechanism using if/else and switch statements.

The program is consists of one class (RentalCalculator). It will hold only one method, of course, in that case the name is main().
Write a Rental Amount Calculator Program for a Video Store. The rental amount will be calculated based on the following criteria:
a) The price of a regular DVD is $2.00. If rented on weekend, you have to pay another 25 cents extra per DVD.
The store also provides some discount based on the following:
b) If rented more than 5, there is a 20 cents discount per DVD.
c) If it is a special day (like Valentine’s day, Mother’s day...etc.,) , another 25 cents discount per DVD.
d) Discounts also given based on membership status. For VVIP, it is 15 cents. For VIP, it is 10 cents and for Regular member it is 5 cents per DVD.
e) Customer also has to pay 13% HST as usual.

Based on the above, determine the final rental amount and display the amount using two digits after the decimal point. The number of DVDs, weekend(y/n), special day(y/n) information, along with membership status (VVIP/VIP/REG) will be input from the keypad.