#include<stdio.h> // 头文件
#include<string.h> // 头文件
#include<stdlib.h> // 头文件
#define M 100 // 货物种类
#define N 100 // 顾客数目
struct goods // 单个货物信息格式
{
int number; // 产品编号
char name[20]; // 产品名称
int price1; // 进价(或利润)
int price2; // 售价
int amount; // 数量
};
struct orderlist // 订单格式
{
struct goods L[M];
};
struct customer // 客户信息内容和格式
{
char name[20]; // 姓名
char password[6]; // 服务密码
int count; // 订单号
};
struct customer khl[N]; // 所有客户信息
struct goods base[M]; // 库存信息
struct orderlist odl[10*N];// 订单表
struct goods lackl[M]; // 缺货表
struct goods suml[M+1]; // 销售报表
int PP=0; // 订单编号
int QQ=0; // 客户编号
int goodssum=0; // 货物总数
int main() // 主函数开始 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
{
int SysUseWay(); // 系统使用说明函数声明
int chushihua(); // 系统初始化函数声明
int welcome(); // 欢迎界面函数声明
int kh(); // 客户函数声明
int buyer(); // 采购部函数声明
int manager(); // 公司经理函数声明
int goodbye(); // 欢送函数声明
int n,m=9; // 变量声明
SysUseWay(); // 系统使用说明书