📄 doods.h
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -