A parking garage charges a RM2.00 minimum fee to park up to three hours. The garage charges an additional RM0.50 per hour for each hour of part thereafter in excess of three hours. The maximum charges for any given 24-hour period is RM10.00. Assume that no car parks for longer than 24 hours at a time. Write a program that calculates and prints the parking charges for each of the three customers. Your program should print the result in a neat tabular format and should calculate and print the total. You should use a function named calculateCharges to determine the charges for each customer. Your output should appear in the following format
Car Hours Charge
1 1.5 2.00
2 4.0 2.50
3 24.0 10.00
TOTAL 29.5 14.50
Comments
Leave a comment