Answer:
Replace /* Your solution goes here */
with
<em>const int CENTS_PER_POUND = 25;
</em>
<em>
cout << "Weight(lb): ";
</em>
<em>cin >> shipWeightPounds;
</em>
<em>shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;
</em>
<em />
Explanation:
This line declares and initializes CENTS_PER_POUND as constant integer to 25
const int CENTS_PER_POUND = 25;
This line prompts user for weight of shipment
cout << "Weight(lb): ";
This line gets weight from the user
cin >> shipWeightPounds;
This line calculates the cost of shipment
shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;