c++语言程序,编写商品类

c++程序,编写一个商品类,其中包含商品号,商品名和商品价格三个数据成员 并且包括构造函数及显示商品信息的函数,利用商品类实例化对象 并对对象的成员进行初始化,然后显示对象的商品价格。

你可以参考一下,希望采纳

#include <string>
#include <iostream>
using namespace std;

class Product
{
private:
    int id;     //商品号
    string name; //商品名
    int price; //商品价格
public:
    
    //构造函数
    Product(int id, string name, int price) {
        this->id = id;
        this->name = name;
        this->price = price;
    }

    void show() {
        cout << "商品号:" << this->id << endl;
        cout << "商品名:" << this->name << endl;
        cout << "商品价格:" << this->price << endl;
    }
};
#include <iostream>
#include "Product.h"
using namespace std;
int main()
{
    Product p1(1, "苹果", 10);
    p1.show();

    return 0;
}

img