Create a ShippedOrder class that derives from Order.
o A ShippedOrder has a $4.00 shipping fee regardless of how many times it is ordered so each total order must add $4.00 to the total. total = quantity * PRICEEACH + SHIPPING_FEE
o Override any any methods in the parent class as necessary.