// Decide which company to ship with #include using namespace std; #include int main() { int pounds; double speedy, reliable; char rush; cout<<"Send overnight? Y or N:"; cin>>rush; cout<<"Enter the weight of package in pounds:"; cin>>pounds; // calculate speedy cost: if (rush == 'Y' || rush == 'y') { if (pounds <= 30) speedy = 10.00; else if (pounds <= 70) speedy = 20.00; else speedy = 0.00; // signal not accepted } // calculate next day for speedy else speedy = 0.50 * pounds; // calculate reliable: if (rush == 'Y' || rush == 'y') reliable = 7.00 + 0.20 * pounds; else reliable = 5.00 + 0.10 * pounds; // print who to ship with cout<