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.


can someone do it in c not c++ but see having a hard time with it. thanks

Recommended Answers

All 2 Replies

what kind of outfit do you think this is? do you see a PayPal button somewhere that I missed?


.

okay. on second thought... i'll help you:

(1) start with a main( ) function.
(2) #include some headers
(3) make heavy use of the "printf" function
(4) format modifiers. have some. they begin with "%"
(5) check out "fgets"
(6) '+' and '*' operators do math stuff. there are others, but don't worry about them now.
(7) learn to use braces. (the '{' and '}' thingies) ... you'll need them every so often.

and there you have it. please be sure to mark this question "solved" before you go.


.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.