Just to remind you:
The Pioneer WoodChuck Enterprise company (PWE) has contacted you and they would like you to help their billing department construct bills for customers. The only service PWE offers is tree removing, which is billed at $75 per hour, no partial hours. The company would like you to produce an algorithm that allows them to compute the cost to a customer for tree removing services if you know the number of hours spent removing trees for that customer.
You should ask the customer for the number of hours worked and produce a bill. Your bill should include the number of hours worked as well as the final charge. If you wish it could be a simple line of output, or if you want, make something more professional.
In case you struggled with the algorithm here is mine:
Ask the user for the number of hours worked Compute the bill (cost = hours worked * hourly rate). Print the result, include $ and two decimal places for cash.Additional Notes