最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C語(yǔ)言超市管理系統(tǒng)設(shè)計(jì)

 更新時(shí)間:2020年07月24日 11:06:56   投稿:lijiao  
這篇文章主要為大家詳細(xì)介紹了C語(yǔ)言超市管理系統(tǒng)設(shè)計(jì),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了C語(yǔ)言超市管理系統(tǒng)設(shè)計(jì)的具體代碼,供大家參考,具體內(nèi)容如下

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define NUM 5

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:
 calculate();break;
 case 5:
 printf("感謝使用,再見(jiàn)!\n");
 exit(0);
 }
 }
}

int menu()
{
 char str[5];
 int select;
 printf("\n\n請(qǐng)選擇數(shù)字進(jìn)行操作\n");
 printf("1.建立庫(kù)存信息\n");
 printf("2.顯示所有信息\n");
 printf("3.購(gòu)物車(chē)\n");
 printf("4.結(jié)算\n");
 printf("5.退出\n");
 printf("請(qǐng)選擇對(duì)應(yīng)數(shù)字1--5");
 while(1)
 {
 fflush(stdin);
 gets(str);
 select=atoi(str);
 if(select<1||select>5)
 printf("輸入錯(cuò)誤,請(qǐng)重新輸入:");
 else
 break;
 
 }
 return select;
 
}

void dis_all()
{
 int i;
 FILE *fp;
 fp=fopen("goods","r");
 for(i=0;(fread(goods+i,sizeof(struct item),1,fp))!=0;i++)
 {
 printf("---------------------------------\n");
 printf("貨品 品名 單價(jià) 庫(kù)存量\n");
 printf("%s%7s%7.2f%8d\n",goods[i].id,goods[i].brand,goods[i].out_price,goods[i].storage);
 
 }
 fclose(fp);
}


void shop_cart()
{
 while(1)
 {
 switch(cart_menu())
 {
 case 1:
 display();break;
 case 2:
 add();break;
 case 3:
 return;
 }
 }
}
int cart_menu()
{
 char str[5];
 int select;
 printf("\n請(qǐng)選擇操作\n");
 printf("-----------------------\n");
 printf("1.顯示當(dāng)前購(gòu)物列表\n");
 printf("2.添加商品\n");
 printf("3.退出\n");
 printf("-----------------------\n\n");
 while(1)
 {
 fflush(stdin);
 gets(str);
 select=atoi(str);
 if(select<1||select>3)
 printf("輸入錯(cuò)誤,請(qǐng)重新輸入:");
 else
 break;
 }
 return select;
}

void display()
{
 struct item_node *p=cart;
 if(p==NULL){
 printf("購(gòu)物車(chē)為空\(chéng)n");
 return ;
 }
 while(p!=NULL){
 printf("----------------------------------\n");
 printf("貨號(hào)  品名 單價(jià) 數(shù)量\n");
 printf("%10s%20s%7.2f%8d\n",p->wanted.id,p->wanted.brand,p->wanted.out_price,p->amount);
 p=p->next;
 }
}

void add()
{
 FILE *fp;
 int i,n;
 char str[20];
 char choice1,choice2;
 struct item_node *p,*p1;
 do
 {
 printf("輸入所需物品的名稱(chēng)或貨號(hào): ");
 fflush(stdin);
 gets(str);
 if((fp=fopen("goods","r"))==NULL){
 printf("打開(kāi)文件失敗\n");
 continue;
 }
 for(i=0;fread(goods+i,sizeof(struct item),1,fp)!=0;i++){
 if((strcmp(goods[i].brand,str)==0||strcmp(goods[i].id,str)==0)&&goods[i].storage!=0){
 printf("已經(jīng)找到所需物品: \n");
 printf("---------------------\n");
 printf("貨號(hào) 品名 單價(jià) 庫(kù)存量\n");
 printf("%s%6s%3.2f%4d\n",goods[i].id,goods[i].brand,goods[i].out_price,goods[i].storage);
 printf("請(qǐng)輸入所需數(shù)量: ");
 scanf("%d",&n);
 if(n>goods[i].storage){
 printf("庫(kù)存不足\n");
 break;
 }
 printf("\n是否購(gòu)買(mǎi)?(Y/N)");
 fflush(stdin);
 choice1=getchar();
 if(choice1=='Y'||choice1=='y'){
 p1=(struct item_node*)malloc(sizeof(struct item_node));
 if(p1==NULL){
 printf("內(nèi)存申請(qǐng)失敗!\n");
 exit(1);
 }
 p1->amount=n;
 p1->wanted=goods[i];
 p1->next=NULL;
 p=cart;
 if(cart==NULL)
 cart=p1;
 else{
 while(p->next!=NULL)
 p=p->next;
 p1->next=p->next;
 p->next=p1;
 }
 }
 break;
 }
 }
 if(i==NUM)
 printf("未找到所需物品\n");
 fclose(fp);
 printf("是否繼續(xù)購(gòu)物?(Y/N)");
 fflush(stdin);
 choice2=getchar();
 }while(choice2=='Y'||choice2=='y');
}


void establish(){
 FILE *fp;
 int i;
 printf("請(qǐng)依次輸入貨物信息:\n");
 printf("----------------------------\n");
 for(i=0;i<NUM;i++)
 {
 printf("品名: ");
 fflush(stdin);
 gets(goods[i].brand);
 printf("貨號(hào): ");
 fflush(stdin);
 gets(goods[i].id);
 printf("進(jìn)價(jià): ");
 fflush(stdin);
 scanf("%f",&goods[i].in_price);
 printf("哨價(jià): ");
 fflush(stdin);
 scanf("%f",&goods[i].out_price);
 printf("數(shù)量: ");
 fflush(stdin);
 scanf("%d",&goods[i].storage);
 printf("\n");
 }
 if((fp=fopen("goods","w"))==NULL){
 printf("創(chuàng)建文件失敗.\n");
 return;
 }
 fwrite(goods,sizeof(struct item),NUM,fp);
 fclose(fp);
}

void calculate()
{
 float total=0,pay;
 struct item_node *p;
 int i;
 FILE *fp;
 printf("以下是購(gòu)物清單: \n");
 display();
 if((fp=fopen("goods","r"))==NULL){
 printf("打開(kāi)文件失敗: \n");
 return;
 }
 for(i=0;(fread(goods+i,sizeof(struct item),1,fp))!=0;i++);
 fclose(fp);
 p=cart;
 while(p!=NULL){
 total+=p->wanted.out_price*p->amount;
 for(i=0;strcmp(goods[i].id,p->wanted.id)!=0;i++);
 goods[i].storage-=p->amount;
 p=p->next;
 }
 printf("總計(jì) %7.2f",total);
 printf("\n輸入實(shí)付金額: ");
 scanf("%f",&pay);
 printf("實(shí)付:  %7.2f 找零:  %7.2f",pay,pay-total);
 if((fp=fopen("goods","w"))==NULL){
 printf("打開(kāi)文件失敗.\n");
 return;
 }
 fwrite(goods,sizeof(struct item),NUM,fp);
 fclose(fp);
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • C++之thread_local變量的一些用法

    C++之thread_local變量的一些用法

    thread_local 是 C++11 中引入的關(guān)鍵字,用于聲明線(xiàn)程局部存儲(chǔ),下面這篇文章主要給大家介紹了關(guān)于C++之thread_local變量用法的相關(guān)資料,文中通過(guò)代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2024-07-07
  • 可能是全網(wǎng)最詳細(xì)的Qt連接MySQL數(shù)據(jù)庫(kù)教程

    可能是全網(wǎng)最詳細(xì)的Qt連接MySQL數(shù)據(jù)庫(kù)教程

    QT眾所周知是一個(gè)開(kāi)源的,以C++為底層的可視化工具庫(kù),下面這篇文章主要給大家介紹了關(guān)于最詳細(xì)的Qt連接MySQL數(shù)據(jù)庫(kù)教程的相關(guān)資料,文中通過(guò)圖文介紹的非常詳細(xì),需要的朋友可以參考下
    2023-04-04
  • VS2022調(diào)試通過(guò)??禂z像頭煙火識(shí)別SDK的實(shí)現(xiàn)

    VS2022調(diào)試通過(guò)海康攝像頭煙火識(shí)別SDK的實(shí)現(xiàn)

    本文主要介紹了VS2022調(diào)試通過(guò)??禂z像頭煙火識(shí)別SDK的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-02-02
  • C/C++實(shí)現(xiàn)詞法分析程序的示例代碼

    C/C++實(shí)現(xiàn)詞法分析程序的示例代碼

    這篇文章主要為大家詳細(xì)介紹了如何基于C/C++實(shí)現(xiàn)一個(gè)簡(jiǎn)單的詞法分析程序,并通過(guò)完成詞法分析程序,了解詞法分析的過(guò)程,感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)學(xué)習(xí)
    2023-05-05
  • c++報(bào)錯(cuò)問(wèn)題解決方案lvalue required as left operand of assignment

    c++報(bào)錯(cuò)問(wèn)題解決方案lvalue required as left opera

    這篇文章主要介紹了c++報(bào)錯(cuò):lvalue required as left operand of assignment,出現(xiàn)此錯(cuò)誤原因,是因?yàn)椋忍?hào)左邊是不可被修改的表達(dá)式或常量,而表達(dá)式或常量不能作為左值,需要的朋友可以參考下
    2023-01-01
  • C++淺析構(gòu)造函數(shù)的特性

    C++淺析構(gòu)造函數(shù)的特性

    構(gòu)造函數(shù)主要作用在于創(chuàng)建對(duì)象時(shí)為對(duì)象的成員屬性賦值,構(gòu)造函數(shù)由編譯器自動(dòng)調(diào)用,無(wú)須手動(dòng)調(diào)用;析構(gòu)函數(shù)主要作用在于對(duì)象銷(xiāo)毀前系統(tǒng)自動(dòng)調(diào)用,執(zhí)行一 些清理工作
    2022-07-07
  • C++資源管理操作方法詳解

    C++資源管理操作方法詳解

    系統(tǒng)中的資源,諸如動(dòng)態(tài)申請(qǐng)的內(nèi)存,文件描述符,數(shù)據(jù)庫(kù)連接,網(wǎng)絡(luò)socket等,在不用的時(shí)候,應(yīng)該及時(shí)歸還給系統(tǒng),否則就會(huì)造成內(nèi)存泄露
    2022-09-09
  • C++類(lèi)的特種函數(shù)生成機(jī)制詳解

    C++類(lèi)的特種函數(shù)生成機(jī)制詳解

    這篇文章主要給大家介紹了關(guān)于C++類(lèi)特種函數(shù)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2021-09-09
  • C語(yǔ)言實(shí)現(xiàn)紙牌計(jì)算24點(diǎn)小游戲

    C語(yǔ)言實(shí)現(xiàn)紙牌計(jì)算24點(diǎn)小游戲

    這篇文章主要為大家詳細(xì)介紹了C語(yǔ)言實(shí)現(xiàn)紙牌計(jì)算24點(diǎn)小游戲,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-10-10
  • C++中實(shí)現(xiàn)fibonacci數(shù)列的幾種方法

    C++中實(shí)現(xiàn)fibonacci數(shù)列的幾種方法

    本文主要介紹了C++中實(shí)現(xiàn)fibonacci數(shù)列的幾種方法,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-01-01

最新評(píng)論

南安市| 徐汇区| 太和县| 辽宁省| 华池县| 利川市| 克什克腾旗| 禄劝| 娄底市| 凌源市| 安宁市| 会同县| 手游| 米林县| 金乡县| 尉犁县| 嫩江县| 武隆县| 浠水县| 榕江县| 定兴县| 漯河市| 万山特区| 调兵山市| 玉环县| 都昌县| 余干县| 胶州市| 阳谷县| 屏南县| 芦溪县| 邵阳县| 安丘市| 漳平市| 安图县| 新晃| 甘泉县| 昌江| 五台县| 昌平区| 威宁|