Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Object-oriented programming (b): Package-delivery services, such as FedEx ,DHL and UPS , offer a number of different shipping options, each with specific costs associated. Create

Object-oriented programming

image text in transcribed

image text in transcribed

(b): 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 weight-based 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. (i.e. Package package1, TwoDayPackage package2, OvernightPackage package3) - Example output looks like: Package 1: Sender: Lou Brown 1 Main St Boston, MA 11111 Recipient: Mary Smith 7 Elm St New York, NY 22222 Cost: 54.25 Package 2: Sender: Lisa Klein 5 Broadway Somervi11e, MA 33333 Recipient: Bob Ceorge 21 Pine Rd Canbridge, MA 44444 Cost: 58.82 Package 3: Sender: Ed Lewis 2 Oak St Boston, MA 55555 Recipient: Don Kelly 9 Main St Denver, Co 66666 Cost: 511.64

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Logistics Lifeline Supply Chain Strategies

Authors: Ehsan Sheroy

1st Edition

7419377502, 978-7419377503

More Books

Students also viewed these Databases questions

Question

Describe how arousal and expressive behaviors interact in emotion.

Answered: 1 week ago