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

📄 customer.h

📁 C语言做的超市进销存源代码文件
💻 H
字号:
#include<vector>
#include<fstream>
#include"super_marker.h"
using namespace std;
class Customer
{
private:
	ofstream sell_file;
	goods g;
	int static business_time;
	
public:
	
	float price;//总价
	vector<goods> vector;
	vector<goods>::iterator iterator;
	Customer();
	~Customer();
	void view(Market&);
	void buy(Market&);
	void check(Market&,int);
};
	
	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -