c语言物流管理系统完整版代码.docxVIP

  • 692
  • 0
  • 约1.07万字
  • 约 14页
  • 2018-06-07 发布于上海
  • 举报
#include stdio.h#include string.h#include stdlib.h#include conio.hstruct stuff //定义员工数据结构体{char name[10];char password[10];char quanxian[2];};struct goods //定义货品数据结构体{char number[20];char name[20];int quantity;char cost[20];char volume[20];char weight[20];};typedef struct a{struct stuff s;struct a *next;}stuffnode; typedef struct b{struct goods g;struct b *next;}goodsnode; stuffnode *stuffhead = NULL;//全局结构体链表指针变量头指针stuffnode *stuffp1 = NULL;goodsnode *goodshead = NULL;goodsnode *goodsp1 = NULL;void initial_stuff(){FILE *fp

文档评论(0)

1亿VIP精品文档

相关文档