Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The cost to ship a package is a flat fee of 7 5 cents plus 2 5 cents per pound. Declare a constant named CENTS
The cost to ship a package is a flat fee of cents plus cents per pound.
Declare a constant named CENTSPERPOUND and initialize with
Get the shipping weight from user input storing the weight into shipWeightPounds.
Using FLATFEECENTS and CENTSPERPOUND constants, assign shipCostCents with the cost of shipping a package weighing shipWeightPounds.
See How to Use zyBooks for info on how our automated program grader works.
qxzqy
public class ShippingCalculator
public static void mainString args
Scanner scnr new Scanner
System.in;
int shipWeightPounds;
int shipCost Cents ;
final int FLATFEECENTS ;
Your solution goes here
System.out.printlnWeightlb: shipWeightPounds;
System.out.printlnFlat feecents: FLATFEECENTS;
System,out.printlnCents per pound: CENTSPERPOUND;
System.out.printlnShipping costcents: shipCostCents;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started