Question
USE C++ Langauge (i want you to do this function in separate 3 files and one main file.) Question -{ ( Package Inheritance Hierarchy) Package-delivery
USE C++ Langauge
(i want you to do this function in separate 3 files and one main file.)
Question -{
( Package Inheritance Hierarchy) Package-delivery services, such as FedEx, DHL and UPS , offer a number of different shipping options, each with specific costs associated. Create an inheritance hierarchy to represent various types of packages. Use class Package as the base class of the hierarchy, then include classes TwoDayPackage and OvernightPackage that derive from Package. Base-class Package should include data members representing the name, address, city, state and ZIP code for both the sender and the recipient of the package, in addition to data members that store the weight (in ounces) and cost per ounce to ship the package. Package s constructor should initialize these data members. Ensure that the weight and cost per ounce contain positive values. Package should provide a public member function calculateCost that returns a double indicating the cost associated with shipping the package. Package s calculateCost function should determine the cost by multiplying the weight by the cost per ounce. Derived-class TwoDayPackage should inherit the functionality of base-class Package , but also include a data member that represents a flat fee that the shipping company charges for two-day-delivery service. TwoDayPackage s constructor should receive a value to initialize this data member. TwoDayPackage should redefine member function calculateCost so that it computes the shipping cost by adding the flat fee to the weightbased cost calculated by base-class Package s calculateCost function. Class OvernightPackage should inherit directly from class Package and contain an additional data member representing an additional fee per ounce charged for overnight-delivery service. OvernightPackage should redefine member function calculateCost so that it adds the additional fee per ounce to the standard cost per ounce before calculating the shipping cost. Write a test program that creates objects of each type of Package and tests member function calculateCost .}
And the main file has to be like this.
// Exercise 11.9 Solution: ex11_09.cpp // Driver program for Package hierarchy. #include#include #include "Package.h" // Package class definition #include "TwoDayPackage.h" // TwoDayPackage class definition #include "OvernightPackage.h" // OvernightPackage class definition using namespace std; int main() { Package package1{"Lou Brown", "1 Main St", "Boston", "MA", 11111, "Mary Smith", "7 Elm St", "New York", "NY", 22222, 8.5, .5}; TwoDayPackage package2{"Lisa Klein", "5 Broadway", "Somerville", "MA", 33333, "Bob George", "21 Pine Rd", "Cambridge", "MA", 44444, 10.5, .65, 2.0}; OvernightPackage package3{"Ed Lewis", "2 Oak St", "Boston", "MA", 55555, "Don Kelly", "9 Main St", "Denver", "CO", 66666, 12.25, .7, .25}; cout << fixed << setprecision(2); // print each package's information and cost cout << "Package 1: Sender: " << package1.getSenderName() << ' ' << package1.getSenderAddress() << ' ' << package1.getSenderCity() << ", " << package1.getSenderState() << ' ' << package1.getSenderZIP(); cout << " Recipient: " << package1.getRecipientName() << ' ' << package1.getRecipientAddress() << ' ' << package1.getRecipientCity() << ", " << package1.getRecipientState() << ' ' << package1.getRecipientZIP(); cout << " Cost: $" << package1.calculateCost() << endl; cout << " Package 2: Sender: " << package2.getSenderName() << ' ' << package2.getSenderAddress() << ' ' << package2.getSenderCity() << ", " << package2.getSenderState() << ' ' << package2.getSenderZIP(); cout << " Recipient: " << package2.getRecipientName() << ' ' << package2.getRecipientAddress() << ' ' << package2.getRecipientCity() << ", " << package2.getRecipientState() << ' ' << package2.getRecipientZIP(); cout << " Cost: $" << package2.calculateCost() << endl; cout << " Package 3: Sender: " << package3.getSenderName() << ' ' << package3.getSenderAddress() << ' ' << package3.getSenderCity() << ", " << package3.getSenderState() << ' ' << package3.getSenderZIP(); cout << " Recipient: " << package3.getRecipientName() << ' ' << package3.getRecipientAddress() << ' ' << package3.getRecipientCity() << ", " << package3.getRecipientState() << ' ' << package3.getRecipientZIP(); cout << " Cost: $" << package3.calculateCost() << endl; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started