<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了C語言實現學生消費管理系統的具體程式碼,供大家參考,具體內容如下
程式碼可以實現的功能:
(1)直接從終端鍵盤輸入資訊
(2)從磁碟檔案錄入學生資訊
(3)可以查詢學生消費資訊
(4)可以刪除學生資訊
(5)可以新增學生的消費資訊,並顯示新增後學生的人數
(6)顯示錄入的學生資訊
(7) 把錄入的學生資訊儲存到指定的檔案中
程式碼:
#include <stdio.h> #include <stdlib.h> #include <string.h> #define LEN sizeof(struct scorenode) #define DEBUG struct scorenode //定義結構體 {int number;/*學號*/ char name[10];/*姓名*/ int xiaofei;/*消費情況*/ struct scorenode *next; }; typedef struct scorenode score; int n,k;/*n,k為全域性變數,本程式中的函數均可*p3以使用它*/ void menu(); score *creat(void); score *load(score *head); score *search(score *head); score *del(score *head); score *add(score *head,score *stu); void print(score *head); save(score *p1); /*==============================================================================================*/ /*=========================建立連結串列,此函數帶回一個指向連結串列頭的指標=============================*/ score *creat(void) { score *head; score *p1,*p2,*p3,*max; int i,j; char t[10]; n=0; p1=p2=p3=(score *)malloc(LEN);/*head=p3; 開闢一個新單元*/ printf("請輸入學生資訊!(以0結束)n"); repeat1: printf("請輸入學生編號(編號>0):");/*輸入學號,學號應大於0*/ scanf("%d",&p1->number); while(p1->number<0) { getchar(); printf("錯誤,請重新輸入號碼:"); scanf("%d",&p1->number); } /*輸入學號為字元或小於0時,程式報錯,提示重新輸入學號*/ if(p1->number==0) goto end;/*當輸入的學號為0時,轉到末尾,結束建立連結串列*/ else { p3=head; if(n>0) { for(i=0;i<n;i++) { if(p1->number!=p3->number) p3=p3->next; else { printf("number repeate,please input again!n"); goto repeat1; /*當輸入的學號已經存在,程式報錯,返回前面重新輸入*/ } } } } printf("請輸入學生姓名"); scanf("%s",&p1->name);/*輸入學生姓名*/ printf("請輸入消費情況");/*輸入消費情況;*/ scanf("%d",&p1->xiaofei); while(p1->number!=0) { n=n+1; if(n==1) head=p1; else p2->next=p1; p2=p1; p1=(score *)malloc(LEN); printf("請輸入學生資訊(以0結束)n"); repeat2:printf("請輸入學號(學號應大於0):"); scanf("%d",&p1->number);/*輸入學號,學號應大於0*/ while(p1->number<0) {getchar(); printf("請重新輸入學號:"); scanf("%d",&p1->number);} /*輸入學號為字元或小於0時,程式報錯,提示重新輸入學號*/ if(p1->number==0) goto end;/*當輸入的學號為0時,轉到末尾,結束建立連結串列*/ else { p3=head; if(n>0) {for(i=0;i<n;i++) {if(p1->number!=p3->number) p3=p3->next; else {printf("number repeate,please input again!n"); goto repeat2; /*當輸入的學號已經存在,程式報錯,返回前面重新輸入*/ } } } } printf("請輸入學生姓名:"); scanf("%s",&p1->name);/*輸入學生姓名*/ printf("請輸入學生消費形況:"); scanf("%d",&p1->xiaofei);/*輸入消費情況; */ } end: p1=head; p3=p1; for(i=1;i<n;i++) { for(j=i+1;j<=n;j++) { max=p1; p1=p1->next; if(max->number>p1->number) { k=max->number; max->number=p1->number; p1->number=k; /*交換前後結點中的學號值,使得學號大者移到後面的結點中*/ strcpy(t,max->name); strcpy(max->name,p1->name); strcpy(p1->name,t); /*交換前後結點中的姓名,使之與學號相匹配*/ /*交換前後結點中的消費情況,使之與學號相匹配*/ } } max=head;p1=head;/*重新使max,p指向連結串列頭*/ } p2->next=NULL;/*連結串列結尾*/ printf("input student's num:%d ge!n",n); getch(); return(head); } /*==============================================================================================*/ /*===========================從檔案讀入學生記錄=================================================*/ score *load(score *head) { score *p1,*p2; int m=0; char filepn[10]; FILE *fp; printf("請輸入路徑及檔名:"); scanf("%s",filepn);/*輸入檔案路徑及名稱*/ if((fp=fopen(filepn,"r+"))==NULL) { printf("不能開啟此檔案n"); getch(); return 0; } else { p1=(score *)malloc(LEN); /*開闢一個新單元*/ fscanf(fp,"%d %s %dn",&p1->number,p1->name,&p1->xiaofei); printf("|%dt|%st|%dtn",p1->number,p1->name,p1->xiaofei); /*檔案讀入與顯示*/ head=NULL; do { n=n+1; if(n==1) head=p1; else p2->next=p1; p2=p1; p1=(score *)malloc(LEN); /*開闢一個新單元*/ fscanf(fp,"%d %s %dn",&p1->number,p1->name,&p1->xiaofei); printf("|%dt|%st|%dtn",p1->number,p1->name,p1->xiaofei); /*檔案讀入與顯示*/ }while(!feof(fp)); p2->next=p1; p1->next=NULL; n=n+1; } printf("-----------------------------------------n");/*表格下線*/ getch(); fclose(fp);/*結束讀入,關閉檔案*/ return (head); } /*==============================================================================================*/ /*=====================查詢學生消費=====================================================*/ score *search(score *head) { int number; score *p1,*p2; printf("input the student's number of searching:"); scanf("%d",&number); getchar(); while(number!=0) { if(head==NULL) { printf("n nobody information!n"); return(head); } printf("-----------------------------------------n"); printf("|numbert|namet|consumet n"); printf("-----------------------------------------n");/*列印表格域*/ p1=head; while(number!=p1->number&&p1->next!=NULL) { p2=p1; p1=p1->next; } if(number==p1->number) { printf("|%dt|%st|%dtn",p1->number,p1->name,p1->xiaofei); printf("-----------------------------------------n"); }/*列印表格域*/ else printf("%dthis student not exist!n",number); printf("input the student's number of searching:"); scanf("%d",&number); getchar(); } printf("already exit!n"); getchar(); return(head); } /*==============================================================================================*/ /*=======================刪除學生資料================================================*/ score *del(score *head) { score *p1,*p2; int number; printf("input the student's number of deleting(input 0 exit):"); scanf("%d",&number); getchar(); while(number!=0)/*輸入學號為0時退出*/ { if(head==NULL) { printf("nnobody information!n"); return(head); } p1=head; while(number!=p1->number&&p1->next!=NULL) /*p1指向的不是所要找的首結點,並且後面還有結點*/ { p2=p1; p1=p1->next; } /*p1後移一個結點*/ if(number==p1->number) /*找到了*/ { if(p1==head) head=p1->next; /*若p1指向的是首結點,把地二個結點地址賦予head*/ else p2->next=p1->next; /*否則將下一個結點地址 賦給前一結點地址*/ printf("delete number:%dn",number); n=n-1; } else printf("%d student not exist!n",number); /*找不到該結點*/ printf("input the student's number of deleting:"); scanf("%d",&number); getchar(); } #ifdef DEBUG printf("already exitn"); #endif printf("now how many students:%d ge!n",n); getch(); return(head); } /*==============================================================================================*/ /*==============================================================================================*/ score *add(score *head,score *stu) { score *p0,*p1,*p2,*p3,*max; int i,j; char t[10]; p3=stu=(score *)malloc(LEN);/*開闢一個新單元*/ printf("ninput the student's information of adding!"); repeat4: printf("please input the student's number(number>0):"); scanf("%d",&stu->number); /*輸入學號,學號應大於0*/ while(stu->number<0) { getchar(); printf("error,please input number again:"); scanf("%d",&stu->number); }/*輸入錯誤,重新輸入學號*/ /******************************************************/ if(stu->number==0) goto end2;/*當輸入的學號為0時,轉到末尾,結束追加*/ else { p3=head; if(n>0) { for(i=0;i<n;i++) { if(stu->number!=p3->number) p3=p3->next; else { printf("number repeat,please input again!n"); goto repeat4; /*當輸入的學號已經存在,程式報錯,返回前面重新輸入*/ } } } } /******************************************************/ printf("input the student's name:"); scanf("%s",stu->name); /*輸入學生姓名*/ printf("please input the consuming:"); scanf("%d",&stu->xiaofei); p1=head; p0=stu; if(head==NULL) { head=p0; p0->next=NULL; }/*當原來連結串列為空時,從首結點開始存放資料*/ else/*原來連結串列不為空*/ { if(p1->next==NULL)/*找到原來連結串列的末尾*/ { p1->next=p0; p0->next=NULL;/*將它與新開單元相連線*/ } else { while(p1->next!=NULL)/*還沒找到末尾,繼續找*/ { p2=p1; p1=p1->next; } p1->next=p0; p0->next=NULL; } } n=n+1; p1=head; p0=stu; for(i=1;i<n;i++) { for(j=i+1;j<=n;j++) { max=p1; p1=p1->next; if(max->number>p1->number) { k=max->number; max->number=p1->number; p1->number=k; /*交換前後結點中的學號值,使得學號大者移到後面的結點中*/ strcpy(t,max->name); strcpy(max->name,p1->name); strcpy(p1->name,t); /*交換前後結點中的姓名,使之與學號相匹配*/ /*交換前後結點中的消費情況,使之與學號相匹配*/ } max=head; p1=head;/*重新使max,p指向連結串列頭*/ } } end2: printf("now how many students are they:%d ge!n",n); getch(); return(head); } /*==============================================================================================*/ /*==============================================================================================*/ void print(score *head) { score *p; if(head==NULL) printf("nnobody information!n"); else { printf("%dn",n); printf("-----------------------------------------n"); printf("|numbert|namet|consumet |n"); printf("-----------------------------------------n");/*列印表格域*/ p=head; do {printf("|%dt|%st|%dtn",p->number,p->name,p->xiaofei); printf("-----------------------------------------n");/*列印表格域*/ p=p->next; }while (p!=NULL);/*列印完成了*/ getch(); } } /*==============================================================================================*/ /*========================(儲存)把錄入的學生資訊儲存到指定的檔案中============================*/ save(score *p1) //儲存 { FILE *fp; if((fp=fopen("d:\text","wb+"))==NULL) //檔案儲存在D槽下,檔名為text { printf("can't open this file!n"); //不能開啟這個檔案 return 0; } else { while(p1!=NULL) { fprintf(fp,"%d %s %dttt",p1->number,p1->name,p1->xiaofei);//將學生資訊寫入到檔案中 p1=p1->next; } printf("file save complete!please enter return!n"); //檔案儲存完成!請輸入空車鍵返回 getch(); } fclose(fp); //關閉檔案 } /*==============================================================================================*/ /*==================================主選單===================================================*/ void menu() { system("cls"); printf("nnn"); printf("tt-------------STUDENT CONSUME-------------n"); printf("ttt0 退出 n"); //錯誤 printf("ttt1 直接從終端鍵盤輸入資訊 n"); //直接從終端鍵盤輸入資訊 printf("ttt2 從磁碟檔案錄入學生資訊 n"); //(載入)從磁碟檔案錄入學生資訊 printf("ttt3 可以查詢學生消費資訊 n"); //(搜尋)可以查詢學生消費資訊 printf("ttt4 可以刪除學生資訊 n"); //(刪除)可以刪除學生資訊 printf("ttt5 可以新增學生的消費資訊 n"); //(新增)可以新增學生的消費資訊,並顯示新增後學生的人數 printf("ttt6 顯示錄入的學生資訊 n"); //(顯示)顯示錄入的學生資訊 printf("ttt7 把錄入的學生資訊儲存到指定的檔案中 n"); //(儲存)把錄入的學生資訊儲存到指定的檔案中 printf("tt-----------------------------------------nn"); // printf("ttchoose(0-7):"); } /*===============================主函數================================================*/ main() { int num; score *head=0,*stu=0; menu(); scanf("%d",&num); while(1) { switch(num) { case 1: head=creat();break; //輸入 case 2: head=load(head);break; //載入 case 3: head=search(head);break; //搜尋 case 4: head=del(head);break; //刪除 case 5: head=add(head,stu);break; //新增 case 6: print(head);break; //顯示 case 7: save(head);break; //儲存 case 0: exit(0); default:printf("Input error,please again!"); } menu(); scanf("%d",&num); } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45