版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領
文檔簡介
//成績管理系統(tǒng)v1.0#include<stdio.h>#include<stdlib.h>#include<string.h>#defineN30#defineM6typedefstructstudent{longstudentID;charstudentName[10];intscore[M];}STU;voidInput(STUstu[],intn,intm);voidTotalave(STUstu[],intn,intm);voidevestuTotalave(STUstu[],intn,intm);voidScoredes(STUstu[],intn,intm);voidScoreas(STUstu[],intn,intm);voidNumas(STUstu[],intn,intm);voidDicas(STUstu[],intn,intm);voidSearchbynum(STUstu[],intn,intx,intm);voidSearchbymane(STUstu[],intn,charname[],intm);voidstatistis(STUstu[],intn,intm);voidList(STUstu[],intn,intm);intmain(){intn,c,x,m;charname[10];STUstu[N];printf("輸入學生人數(shù)");scanf("%d",&n);printf("輸入考試科目");scanf("%d",&m);printf("1.Inputrecord\n");printf("2.Caculatetotelandaveragescoreofeverycourse\n");printf("3.Caculatetotelandaveragescoreofeverystudent\n");printf("4.Sortindescendingorderbytotalscoreofeverystudent\n");printf("5.Sortinascendingorderbytotalscoreofeverystudent\n");printf("6.Sortinascendingorderbynumber\n");printf("7.Sortinascendingorderbyname");printf("8.Searchbynumber\n");printf("9.Searchbyname\n");printf("10.Statisticanalysisforeverycourse\n");printf("11.Listrecord\n");printf("0.Exit\n");printf("Pleaseenteryourchoice:\n");printf("\n");for(;;){scanf("%d",&c);switch(c){case1://錄入學生學號和各科成績Input(stu,n,m);printf("Pleaseenteryourchoice:\n");break;case2://計算每門課程的總分和平均分Totalave(stu,n,m);printf("Pleaseenteryourchoice:\n");break;case3://計算每個學生的總分和平均分evestuTotalave(stu,n,m);break;case4://按每個學生的總分由高到低排出名次表Scoredes(stu,n,m);printf("Pleaseenteryourchoice:\n");break;case5://按每個學生的總分由低到高排出名次表Scoreas(stu,n,m);printf("Pleaseenteryourchoice:\n");break;case6://按學號由小到大排出名次表Numas(stu,n,m);printf("Pleaseenteryourchoice:\n");break;case7://按姓名的字典順序排出成績表Dicas(stu,n,m);printf("Pleaseenteryourchoice:\n");break;case8://按學號查詢學生排名及其各科成績printf("請輸入查找學號\n");scanf("%d",&x);Searchbynum(stu,n,x,m);printf("Pleaseenteryourchoice:\n");break;case9://按姓名查詢學生排名及其各科成績printf("請輸入查找姓名\n");scanf("%s",name);getchar();}}for(i=0;i<n;i++)printf("ID:%10ld,name:%s,score:%d\n",stu[i].studentID,stu[i].studentName,sum[i]);//以長整形打印用%ld}voidScoreas(STUstu[],intn,intm)//5.按每個學生的總分由di到gao排出名次表{inti,j,k,h,sum[N];STUt;for(i=0;i<n;i++){sum[i]=0;for(j=0;j<m;j++){sum[i]=sum[i]+stu[i].score[j];}}for(i=0;i<n;i++){k=i;for(j=i+1;j<n;j++){if(sum[j]<sum[k])k=j;}if(i!=k){t=stu[i],h=sum[i];stu[i]=stu[k],sum[i]=sum[k];stu[k]=t,sum[k]=h;}}for(i=0;i<n;i++)printf("ID:%10ld,name:%s,score:%d\n",stu[i].studentID,stu[i].studentName,sum[i]);//以長整形打印用%ld}voidNumas(STUstu[],intn,intm)//6.按學號由小到大排出名次表{inti,j,k;STUt;for(i=0;i<n;i++){k=i;for(j=i+1;j<n;j++){if(stu[j].studentID<stu[k].studentID)k=j;}if(i!=k)t=stu[k],stu[k]=stu[i],stu[i]=t;}for(i=0;i<n;i++){printf("ID:%10ld,name:%s\n",stu[i].studentID,stu[i].studentName);//以長整形打印用%ldfor(j=0;j<m;j++)printf("project%dscore:%d\n",j+1,stu[i].score[j]);}}voidDicas(STUstu[],intn,intm)//7.{inti,j;STUt;for(i=0;i<n;i++){for(j=i+1;j<n;j++){if(strcmp(stu[i].studentName,stu[j].studentName)>0)t=stu[i],stu[i]=stu[j],stu[j]=t;}}for(i=0;i<n;i++){printf("ID:%10ld,name:%s\n",stu[i].studentID,stu[i].studentName);for(j=0;j<m;j++)printf("project:%d,score:%d\n",j+1,stu[i].score[j]);}}voidSearchbynum(STUstu[],intn,intx,intm)//8.按學號查詢學生排名及其各科成績{inti,j,c=1,find=0,sum[N];for(i=0;i<n;i++){sum[i]=0;for(j=0;j<m;j++)sum[i]=sum[i]+stu[i].score[j];}for(i=0;i<n;i++){if(stu[i].studentID==x){find=1;break;}}if(find==0)printf("notfind\n");else{for(j=0;j<n;j++){if(sum[j]>sum[i])c++;}printf("ID:%10ldname:%s\n",stu[i].studentID,stu[i].studentName);//以長整形打印用%ldfor(j=0;j<m;j++)printf("project%dscore:%d\n",j+1,stu[i].score[j]);printf("allscore:%d,order:%d\n",sum[i],c);}}voidSearchbymane(STUstu[],intn,charname[],intm)//9{inti,j,c=1,find=0,sum[N];for(i=0;i<n;i++){sum[i]=0;for(j=0;j<m;j++)sum[i]=sum[i]+stu[i].score[j];}for(i=0;i<n;i++){if(strcmp(stu[i].studentName,name)==0){find=1;break;}}if(find==0)printf("notfind\n");else{for(j=0;j<n;j++){if(sum[j]>sum[i])c++;}printf("ID:%10ld,name:%s\n",stu[i].studentID,stu[i].studentName);//以長整形打印用%ldfor(j=0;j<m;j++)printf("project%dscore:%d\n",j+1,stu[i].score[j]);printf("allscore:%d,order:%d\n",sum[i],c);}}voidstatistis(STUstu[],intn,intm)//10.{inta=0,b=0,c=0,d=0,e=0,i,j;doubleA,B,C,D,E;for(j=0;j<m;j++){for(i=0;i<n;i++){if(stu[i].score[j]>=90)a++;elseif(stu[i].score[j]>=80)b++;elseif(stu[i].score[j]>=70)c++;elseif(stu[i].score[j]>=60)d++;elsee++;}A=(double)a/n*100;B=(double)b/n*100;C=(double)c/n*100;D=(double)d/n*100;E=(double)e/n*100;printf("project%d\n",j+1
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 西京學院《微機原理與接口技術(shù)》2022-2023學年期末試卷
- 西南林業(yè)大學《地理信息系統(tǒng)原理與應用》2022-2023學年第一學期期末試卷
- 從事專業(yè)與所學專業(yè)不一致專業(yè)技術(shù)人員申報職稱崗位任職合格證明附件6
- 西京學院《電機學實驗》2021-2022學年期末試卷
- 西華師范大學《中學思想政治學科教學論》2021-2022學年第一學期期末試卷
- 西華師范大學《音樂作品分析與寫作》2023-2024學年第一學期期末試卷
- 西華師范大學《文藝作品演播》2022-2023學年第一學期期末試卷
- 2024-2025學年高中物理舉一反三系列專題4.1 普朗克黑體輻射理論(含答案)
- 房地產(chǎn)金融與投資概論教學課件第二章房地產(chǎn)抵押貸款
- 匆匆 朱自清課件
- 區(qū)塊鏈技術(shù)在供應鏈金融中的應用
- (完整)中小學教師職稱評定答辯題
- 中國電影發(fā)展史簡介
- 2023北京海淀區(qū)高二上學期期末語文試題及答案
- 糧油售后服務承諾書
- 科研倫理與學術(shù)規(guī)范-課后作業(yè)答案
- 藥學職業(yè)生涯人物訪談
- 2023年營養(yǎng)師營養(yǎng)指導員專業(yè)技能及理論知識考試題庫附含答案
- 單位職工獨生子女父母一次性退休補貼申請表
- 國有集團公司中層及員工履職追責問責處理辦法模版
評論
0/150
提交評論