qcode
  • 创作工场专业版,一问多答!更智能、更完整、更原创
  • 这是一个超强内容创作平台,它会写文章、做设计、绘图、敲代码,有问必答!
🔥点击使用-高级专业版🔥

帮我编写一段产品管理模块设计的计算机代码

时间2023-03-31 10:00:30 提问来自 湖南省长沙市 的网友 分类创作 浏览306
#include<iostream> #include<string> using namespace std; class Product { //定义产品类 private: int id; //产品id string name; //产品名称 string specification; //规格参数 double price; //价格 public: Product(int id, string name, string specification, double price) { this->id = id; this->name = name; this->specification = specification; this->price = price; } void setId(int id) {this->id = id;} //设置id的函数; void setName(string name) {this->name=name;} //设置名字的函数; void setSpecification(string specification) {this->specification=specification;} //设置规格参数的函数; void setPrice(double price) {this->price=price;} //设置价格的函数; int getId() const{return this->id;} //得到id的函数; string getName() const{return this->name;} //得到名字的函数; double getPrice() const{return this->price;} //得到价格的函数; }; int main() { Product p1(1001,"电子产品","尺寸大小",1000.0); cout<<"ID:"<<p1.getId()<<endl <<"Name:"<<p1.getName()<<endl <<"Specification:"<<p1.getSpecification()<<endl <<"Price:"<<p1.getPrice(); }

点击这里,进行内容创作

创作工场 免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!

上一篇 人类存在的意义是什么 下一篇 建筑工程项目的成本控制和效益分析的论文结束语