Program 2, PWE Billing System part 1.

Short Description:

Write a program that will produce a bill for a tree service.

Goals

When you finish this homework, you should have:

Formal Description

Implement your algorithm for homework 2 part 1.

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

Required Files

One Java source code file.

Submission

Submit the assignment to the D2L folder Program 2 by the due date.