java programming 53
Write a program to calculate the cost of putting a fence all the way around a rectangular yard AND putting sod everywhere in the yard EXCEPT for a circular flower bed.
Input is from the keyboard. Input the length and width of the yard and the radius of the flower bed (all double and all in feet). The cost of fencing (make this a constant) is $2.50 per foot and the cost of sod is $1.50 per square foot (another constant).
Output the cost of fencing, the area of the yard WHERE YOU WILL PUT SOD, the cost of all the sod, and the total cost of the project.
Assume that you must buy fencing in feet only (so if you need 45.6 feet you must buy 46) and sod in square feet only (if you need 67.8 sq feet you must buy 68).
Remember to put a comment at the beginning of your program stating clearly what the program does, and put comments in the code too.