Answer:
The following alterations are done to the program
1. Replace <em>/* Your solution goes here */ </em>with
<em>const int CENTS_PER_POUND = 25;</em>
<em>cout<<"Ship Weight Pounds: ";
</em>
<em>cin>>shipWeightPounds;
</em>
<em />
2. Include
<em>shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;</em>
after
<em>cout << ", Cents per lb: " << CENTS_PER_POUND;</em>
Explanation:
<em>See attachment for complete program as it should be ordered</em>
<em></em>
This line declares CENTS_PER_POUND as a constant integer and it also initializes the variable to 25
<em>const int CENTS_PER_POUND = 25;</em>
This prompts the user for the weight of the shipping items (in pounds)
<em>cout<<"Ship Weight Pounds: ";
</em>
<em />
This gets user input for the weight of the shipping item
<em>cin>>shipWeightPounds;
</em>
<em />
<em>.............................</em>
<em>........</em>
<em>...</em>
This calculates the cost of shipping the item
<em>shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;</em>