doods.h
来自「公司管理系统工程」· C头文件 代码 · 共 32 行
H
32 行
class Goods
{
protected:
int price;
string name;
int quantity;
public:
void input();
void show();
};
Goods::input()
{
cout<<"please input the Goods Data:"<<endl;
cout<<"name:"<<endl;
cin>>name;
cout<<"price:"<<endl;
cin>>price;
cout<<"quantity:"<<endl;
cin>>quantity;
}
Goods::show()
{
cout<<"name:"<<name<<endl;
cout<<"price:"<<price<<endl;
cout<<"quantity:"<<quantity<<endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?