Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

3.Part dA shipping company uses the following function to calculate the cost (in dollars) of shipping based on the weight of the package (in pounds).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.6It will cost $8.50 to ship this package.Enter package weight: 0.4It will cost $3.50 to ship this package.Enter package weight: 20.1The package cannot be shipped! To begin, first implement the shippingCostmethod to convert weight to cost then you MUST use this in your main, where you will perform all user input/output.

starter code:

public class LA1d { /** * Error message to display for negative amount */ public static final String ERR_MSG = "The package cannot be shipped!"; /** * Method to compute shipping cost * * @param weight, assumed to be in (0, 20] * @return cost to ship */ public static double shippingCost(double weight) { return 0.0; // TODO: replace with your method implementation }

// TODO: document this method public static void main(String[] args) { // TODO: write your code here }

}

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

Web Database Development Step By Step

Authors: Jim Buyens

1st Edition

0735609667, 978-0735609662

More Books

Students also viewed these Databases questions