1、文件管理 文件打开、关闭:对于刚输入或进行操作后的商品信息,在建立新的商品库存量后,可以把其保存在一个文件中,并对该文件可进行打开和关闭操作。 2、进出货管理 (1)商品进货:输入数据后商品信息能自动更新进行添加 (2)商品销售:输入数据后商品信息能自动更新进行减少 3、商品数据管理 (1)增加/删除商品:添...
include <stdio.h> include <malloc.h> include <string.h> typedef struct { char num[10];char name[20];float price;int amount;}Product;typedef struct node { Product p;struct node *pre;struct node *next;}node,*linklist;linklist head,last;void setData(linklist p){ printf("产...
我这里有一个!具体的,稍微改一下就可以了!include "stdio.h" /*I/O函数*/ include "stdlib.h" /*其它说明*/ include "string.h" /*字符串函数*/ include "conio.h" /*屏幕操作函数*/ include "mem.h" /*内存操作函数*/ include "ctype.h" /*字符操作函数*/ include "alloc.h" /*...
【题目】建立销售管理系统,对商品销售相关信息进行管理。商品销售相关信息包括销售员代号、销售员姓名、月份、每月销售额和年度总销售额等。具体要求如下:(1)建立该系统的存储结构。(2)录入销售员每个月的销售额及相关信息。(3)查找某个销售员某个月的销售额。(4)修改某个销售员某个月的销售额。(5)删除某个...