• 大小: 2.32KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签:

资源简介

C语言超市管理系统.zip

资源截图

代码片段和文件信息

#include
#include
#include
#define NUM 5

/* 【自学去】网站收集 http://www.zixue7.com */

struct item{
char brand[20];
char id[10];
float in_price;
float out_price;
int   storage;
};
struct item_node{
struct item wanted;
int    amount;
struct item_node *next;
};

int menu();
void establish();
void dis_all();
void shop_cart();
int  cart_menu();
void add();
void display();
void calculate();

struct item goods[NUM];
struct item_node *cart;


void main()
{
printf(“***********************************\n“);
printf(“     欢迎进入超市管理系统\n“);
printf(“***********************************\n“);
while(1)
{
switch(menu())
{
case 1:
establish();break;
case 2:
dis_all();break;
case 3:
shop_cart();break;
case 4:

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-31 17:51  C语言超市管理系统\
     文件         121  2015-05-17 06:52  C语言超市管理系统\it学习网.url
     文件        5500  2015-05-17 06:56  C语言超市管理系统\system.cpp

评论

共有 条评论