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;
}
#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;
}
Comments
Leave a comment