Answer to Question #217583 in C++ for kojo

Question #217583

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.

Using FLAT_FEE_CENTS and CENTS_PER_POUND constants, assign shipCostCents with the cost of shipping a package weighing shipWeightPounds.


#include

using namespace std;


int main() {

int shipWeightPounds;

int shipCostCents = 0;

const int FLAT_FEE_CENTS = 75;


/* Your solution goes here */


cout << "Weight(lb): " << shipWeightPounds;

cout << ", Flat fee(cents): " << FLAT_FEE_CENTS;

cout << ", Cents per lb: " << CENTS_PER_POUND << endl;

cout << "Shipping cost(cents): " << shipCostCents << endl;


return 0;

}


1
Expert's answer
2021-07-18T01:23:36-0400

#include <iostream>

using namespace std;

int main() 

{

  int shipWeightPounds;

  int shipCostCents = 0;

  const int FLAT_FEE_CENTS = 75;

  const int CENTS_PER_POUND = 25;

    cout<<"Enter for ship weight in pounds: ";

    cin>>shipWeightPounds;

  shipCostCents = FLAT_FEE_CENTS + (shipWeightPounds * CENTS_PER_POUND);

     cout<<"Weight(lb): " << shipWeightPounds<<endl;

 cout<<"Flat fee(cents): " << FLAT_FEE_CENTS<<endl;

     cout<<"Cents per lb: " << CENTS_PER_POUND <<endl;

     cout<<"Shipping cost(cents): " << shipCostCents <<endl;

  return 0;

}


Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS