A shipping company uses the following function to calculate the cost (in dollars) of shipping based on the weight of the package (in pounds). 3.5, 5.5, if 0 < w ≤1 if 1 < w <3

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter4: Control Structures I (selection)
Section: Chapter Questions
Problem 19PE: Ron bought several acres of farm to grow and sell vegetables. Suppose that Ron wants to grow a...
icon
Related questions
Question

Write the code in java and dont use AI please and dont copy from other soures and write it in simple and follow what in the question says

Enter package weight: 21
The package cannot be shipped
Transcribed Image Text:Enter package weight: 21 The package cannot be shipped
A shipping company uses the following function to calculate the cost (in dollars) of shipping based on the
weight of the package (in pounds).
if () {
} else if () {
}else if () {
} else {
}
Enter package weight: -1
Invalid input.
c(w):
Write a program that prompts the user to enter the weight of the package and displays the shipping cost.
If the weight is negative or zero, display a message "Invalid input." If the weight is greater than 20,
display a message "The package cannot be shipped." You are required to use the following style for nested
if-statement: ({} can be omitted for single statements.)
A few (separate) sample runs are as follows:
Enter package weight: 0.5
The shipping cost is $3.5
3.5,
5.5,
8.5,
10.5,
Enter package weight: 2.5
The shipping cost is $5.5
if 0 < w ≤ 1
if 1 < w ≤ 3
if 3 < w ≤ 10
if 10 w 20
Transcribed Image Text:A shipping company uses the following function to calculate the cost (in dollars) of shipping based on the weight of the package (in pounds). if () { } else if () { }else if () { } else { } Enter package weight: -1 Invalid input. c(w): Write a program that prompts the user to enter the weight of the package and displays the shipping cost. If the weight is negative or zero, display a message "Invalid input." If the weight is greater than 20, display a message "The package cannot be shipped." You are required to use the following style for nested if-statement: ({} can be omitted for single statements.) A few (separate) sample runs are as follows: Enter package weight: 0.5 The shipping cost is $3.5 3.5, 5.5, 8.5, 10.5, Enter package weight: 2.5 The shipping cost is $5.5 if 0 < w ≤ 1 if 1 < w ≤ 3 if 3 < w ≤ 10 if 10 w 20
Expert Solution
steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning