Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Java with Comments, This program calculates the cost of putting a fence all the way around a rectangular yard AND putting sod everywhere in

In Java with Comments,

This program calculates 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 consists of the length and width of the yard and the radius of the flower bed (all double and all in feet). The cost of fencing (a constant) is $2.50 per foot and the cost of sod is $1.50 per square foot (another constant). Fencing can only be purchased in one foot sections, and sod can only be purchased by the square foot. (Remember to use ceil)

If you use this input (not realistic, but easier for me to verify) length 6.2, width 3.4, radius 1.2 Then cost of fence is $50, cost of sod is $25.5, total cost is $75.5

With length 15.6, width 12.7, radius 3 Cost of fence is $142.5, cost of sod is $255.0, total cost is $397.5

With length 100, width 30, radius 10 Cost of fence is $650.0, cost of sod is $4029.0, total cost is $4679.0

NOTE the formatted output. DO NOT give more than two decimal places when you are outputting a cost.

Please use a Circle Class and a Rectangle Class that will be called in Main.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Graph Database Modeling With Neo4j

Authors: Ajit Singh

2nd Edition

B0BDWT2XLR, 979-8351798783

Students also viewed these Databases questions