摘要:
#ifndef SALESITEM_H#define SALESITEM_H// Definition of Sales_item class and related functions goes here#include #include class Sales_item {friend bool operator==(const Sales_item&, const Sales_item&);// other members as beforepublic: // added constructors to initialize from a string or an is 阅读全文