no appropriate default constructor available error
问题 here is my code: class package { protected: string name; string city; string state; int zip; double weight; double costPerOunce; public: package::package(string Name, string City, string State, int Zip, double Weight, double CostPerOunce): name(Name), city(City), state(State), zip(Zip), weight(Weight), costPerOunce(CostPerOunce) { } double calculateCost() { return (weight * costPerOunce); } }; class twoDayPackage: public package { protected: double flatFee; public: twoDayPackage: