⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 doods.h

📁 公司管理系统工程
💻 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 + -