-
大小: 2.32KB文件類型: .zip金幣: 1下載: 0 次發(fā)布日期: 2021-01-29
- 語言: C/C++
- 標(biāo)簽:
資源簡(jiǎn)介
C語言超市管理系統(tǒng).zip
代碼片段和文件信息
#include
#include
#include
#define?NUM?5
/*?【自學(xué)去】網(wǎng)站收集?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(“?????歡迎進(jìn)入超市管理系統(tǒng)\n“);
printf(“***********************************\n“);
while(1)
{
switch(menu())
{
case?1:
establish();break;
case?2:
dis_all();break;
case?3:
shop_cart();break;
case?4:
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2015-03-31?17:51??C語言超市管理系統(tǒng)\
?????文件?????????121??2015-05-17?06:52??C語言超市管理系統(tǒng)\it學(xué)習(xí)網(wǎng).url
?????文件????????5500??2015-05-17?06:56??C語言超市管理系統(tǒng)\system.cpp
評(píng)論
共有 條評(píng)論