A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is $10. 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 3 customers who parked their cars in this garage yesterday. You should enter the hours parked for each customer. Your program should print the results in a neat tabular format and should calculate and print the total of yesterday’s receipts.
The program should use the function calculateCharges to determine the charge for each customer. Your output should appear in the same format as shown above.
Pass one variable to calculateCharges. Do not have multiple variables for the customer’s cars, e.g., car1, car2, car3, or hours1, hours2, hours3 etc. Use a for loop to handle the repetition.]
I’m having a heck of a time developing the for loop to handle the repetition. Can someone provide me with an example that I can try? I can capture one, but not all three. Thanks