睡不醒640 2022-05-26 18:08 采纳率: 75%
浏览 89
已结题

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

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

  • 写回答

1条回答 默认 最新

  • 程序喵正在路上 新星创作者: 后端开发技术领域 2022-05-26 19:05
    关注

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

    #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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 6月3日
  • 已采纳回答 5月26日
  • 创建了问题 5月26日