Create a java class named Shipment a. The program must ask for two separate packages to ship b. The program must calculate the cost difference using the difference in volume: i.e. The base price for a package with volume <=1 is $3, for every unit increase in volume, the cost increases by $1 e.g. 1: a parcel with volume 4, the cost is $3+ $1 +$1 +$1 = $6
Create a java class named Shipment
a. The
b. The program must calculate the cost difference using the difference in volume:
i.e. The base price for a package with volume <=1 is $3, for every unit increase in volume, the cost increases by $1 e.g. 1: a parcel with volume 4, the cost is $3+ $1 +$1 +$1 = $6
e.g. 2: a parcel with volume 2.5, the cost is $3 + $1.5 = $4.5
c. Give the following (in order of priority):
i. If there is no difference, display the costs as the same
ii. If the cost of one is less than twice the other, display that it is “slightly more than”
iii. If the cost of one is less than three times the other, display that it is “twice”
iv. If the cost of one is less than four times the other, display that it is “triple”
v. If the cost of one is less than five times the other, display that it is “quadruple”
vi. Otherwise, display that as a calculated multiple (eg 5x, 6x etc)
c. The program must indicate the more costly package (if not same cost) and by how much
d. The program must calculate and display the appropriate message (including proper dimension and cost format) f. Your code also does NOT need to worry if the user inputs an invalid value for the input (example: invalid length). The output of your code must match the samples.
g. You must change the title
i.e. Welcome to shipping calculator!
Step by step
Solved in 3 steps with 1 images