Question: Write in JAVA A shipping company uses the following function to calculate the cost (in dollars) of shipping based on the weight of the package

Write in JAVA

A shipping company uses the following function to calculate the cost (in dollars) of shipping based on the weight of the package (in pounds).

cw= $3.50 if 0$5.50 if 1$8.50 if 3$10.50 if 10Write in JAVA A shipping company uses the following function to calculate

Write a program that prompts the user to enter the weight of the package and displays the resulting shipping cost. If the weight is outside the valid bounds, display an error message (supplied as a constant). For example:

Enter package weight: 3.6

It will cost $8.50 to ship this package.

Enter package weight: 0.4

It will cost $3.50 to ship this package.

Enter package weight: 20.1

The package cannot be shipped!

To begin, first implement the shippingCost method to convert weight to cost then you MUST use this in your main, where you will perform all user input/output.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!