Question: The cost to ship a package is a flat fee of 7 5 cents plus 2 5 cents per pound. Declare a const named CENTS

The cost to ship a package is a flat fee of 75 cents plus 25 cents per pound.
Declare a const named CENTS PER POUND and initialize with 25.
Get the shipping weight from user input storing the weight into shipWeightPounds. (Remember %d is used to read in an integer from the user.)
Using FLAT_FEE CENTS and CENTS_PER_POUND 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.
#include stdio. h>
int main(void){
int shipWeightPounds;
int shipCostCents =;
const int FLAT_FEE_CENTS =75;
const int CENTS_PER_POUND =25;
scanf("%d", &shipWeightPounds);
shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND +%d;
printf("Weight(lb): %d, Flat fee(cents): %d, Cents per pound: %d
Shipping cost(cents): %d
",
shipWeightPounds, FLAT_FEE_CENTS, CENTS_PER_POUND, shipCostCents);
return ;
}
 The cost to ship a package is a flat fee of

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!