學(xué)生信息管理系統(tǒng)c語言版源代碼_第1頁
學(xué)生信息管理系統(tǒng)c語言版源代碼_第2頁
學(xué)生信息管理系統(tǒng)c語言版源代碼_第3頁
學(xué)生信息管理系統(tǒng)c語言版源代碼_第4頁
學(xué)生信息管理系統(tǒng)c語言版源代碼_第5頁
已閱讀5頁,還剩12頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

...wd......wd......wd...#include<stdio.h>#include<string.h>#include<stdlib.h>#include<conio.h>#defineN1000typedefstructstudent{intnumber;charname[20];intgrade;intgaoshu;intyingyu;intjisuanji;intsum;}STUDENT;STUDENTstudent[N];intshuliang=0;voidmenu();voidfhzjm(){charbiaozhi[20];printf("\n");printf("還需要操作么如果需要操作請輸入:yes,否那么請輸入:no\n");scanf("%s",biaozhi);if(strcmp(biaozhi,"yes")==0){menu();}elseif(strcmp(biaozhi,"no")==0)exit(0);else{printf("請輸入正確的字符,謝謝!\n");fhzjm();}}voidDengJi(){intrs;inti,k=1;system("CLS");printf("請輸入需要輸入幾個學(xué)生信息:");scanf("%d",&rs);for(i=shuliang;i<shuliang+rs;i++,k++){printf("請輸入第%d個學(xué)生的學(xué)號:",k);scanf("%d",&student[i].number);printf("請輸入學(xué)生的姓名:");scanf("%s",student[i].name);printf("請輸入學(xué)生3門課的成績:");printf("請輸入第1門課的成績:");scanf("%d",&student[i].gaoshu);printf("請輸入第2門課的成績:");scanf("%d",&student[i].yingyu);printf("請輸入第3門課的成績:");scanf("%d",&student[i].jisuanji);}shuliang=shuliang+rs;fhzjm();}voidShanChu(){charshanchuinfo[10];system("CLS");printf("刪除全部學(xué)生信息請輸入\"all\",刪除指定學(xué)號的學(xué)生信息請輸入\"one\"\n");scanf("%s",shanchuinfo);if(strcmp(shanchuinfo,"all")==0){intj;printf("你刪除的學(xué)生信息如下:\n");printf("-----------學(xué)號-------------姓名-------------高數(shù)--------------英語--------------計算機(jī)\t\n");for(j=0;j<shuliang;j++)printf("----%d-------%s-------%d-------%d-------%d\t\n",student[j].number,student[j].name,student[j].gaoshu,student[j].jisuanji);shuliang=0;printf("刪除成功\n\n");}elseif(strcmp(shanchuinfo,"one")==0){structstudent*p=NULL;intchoice;inti,j,k=0;printf("請輸入你要刪除的人的學(xué)號:");scanf("%d",&choice);for(i=0;i<shuliang;i++){if(choice==student[i].number){k=1;j=i;break;}}if(k){if(shuliang==1){p=&student[0];free(p);shuliang=0;}else{for(i=j;i<shuliang;i++){student[i]=student[i+1];}shuliang=shuliang-1;}printf("刪除成功\n\n");}else{printf("輸入數(shù)據(jù)錯誤!\n");}}fhzjm();}voidLiuLan(){inti;system("CLS");if(shuliang==0){printf("系統(tǒng)里面沒有任何學(xué)生的信息!\n");}else{for(i=0;i<shuliang;i++){printf("第%d個學(xué)生的學(xué)號為:%d\n",i+1,student[i].number);printf("第%d個學(xué)生的姓名為:%s\n",i+1,student[i].name);printf("第%d個學(xué)生的第一門課的成績?yōu)椋?d\n",i+1,student[i].gaoshu);printf("第%d個學(xué)生的第二門課的成績?yōu)椋?d\n",i+1,student[i].yingyu);printf("第%d個學(xué)生的第三門課的成績?yōu)椋?d\n",i+1,student[i].jisuanji);student[i].sum=student[i].gaoshu+student[i].yingyu+student[i].jisuanji;printf("第%d個學(xué)生的總成績?yōu)椋?d\n",i+1,student[i].sum);}}fhzjm();}voidChaZhao(){intxx;charchoice,yy[20];inti,j,k=0;system("CLS");if(shuliang==0){printf("系統(tǒng)里面沒有任何學(xué)生的信息!\n");fhzjm();}printf("三種查找方式:學(xué)號,姓名,成績\n");printf("如果按學(xué)號查找請輸1,如果按姓名查找請輸2,如果按成績查找請輸3\n");printf("請輸入您查找的方式:");scanf("%s",&choice);if(choice=='1'){printf("請輸入需要查找學(xué)生的學(xué)號:");scanf("%d",&xx);printf("您所查找的學(xué)生的信息為:\n");printf("----學(xué)號----姓名----高數(shù)成績----英語成績----計算機(jī)成績----\t\n");for(i=0;i<shuliang;i++){if(xx==student[i].number){j=i;k=1;printf("----%d-------%s-------%d-------%d-------%d----\t\n",student[j].number,student[j].name,student[j].gaoshu,student[j].yingyu,student[i].jisuanji);}}if(k==0)printf("輸入信息有誤:\n");}elseif(choice=='2'){printf("請輸入需要查找學(xué)生的姓名:\n");scanf("%s",yy);printf("您所查找的學(xué)生的信息為:\n");printf("----學(xué)號----姓名----高數(shù)成績----英語成績----計算機(jī)成績----\t\n");for(i=0;i<shuliang;i++){if(strcmp(yy,student[i].name)==0){j=i;k=1;printf("----%d-------%s-------%d-------%d-------%d----\t\n",student[j].number,student[j].name,student[j].gaoshu,student[j].yingyu,student[j].jisuanji);}}if(k==0)printf("輸入信息有誤:\n");}elseif(choice=='3'){printf("請輸入需要查找學(xué)生的成績:\n");scanf("%d",&xx);printf("您所查找的學(xué)生的信息為:\n");printf("----學(xué)號----姓名----高數(shù)----英語----計算機(jī)----\t\n");for(i=0;i<shuliang;i++){if(xx==student[i].grade){j=i;k=1;printf("----%d-------%s-------%d-------%d-------%d----\t\n",student[j].number,student[j].name,student[j].gaoshu,student[j].yingyu,student[i].jisuanji);}}if(k==0)printf("輸入信息有誤:\n");}fhzjm();}voidPaiXu(){structstudent*p1[N],**p2,*temp;inti,j;system("CLS");p2=p1;for(i=0;i<shuliang;i++){p1[i]=student+i;}for(i=0;i<shuliang;i++){for(j=i+1;j<shuliang;j++){if((*(p2+i))->sum<(*(p2+j))->sum){temp=*(p2+i);*(p2+i)=*(p2+j);*(p2+j)=temp;}}}printf("按照總成績排序之后的信息為:\n");printf("----學(xué)號----姓名----總成績----\t\n");for(i=0;i<shuliang;i++){student[i].sum=student[i].gaoshu+student[i].yingyu+student[i].jisuanji;printf("----%d-----%s----%d-----\n",(*(p2+i))->number,(*(p2+i))->name,(*(p2+i))->sum);}fhzjm();}voidCunChu(){inti;FILE*rs;if((rs=fopen("student.txt","w"))==NULL){printf("notopen");exit(0);}for(i=0;i<shuliang;i++){fwrite(&student[i],sizeof(student[i]),1,rs);}if(ferror(rs)){fclose(rs);perror("寫文件失??!\n");return;}printf("存儲文件成功!\n");fclose(rs);fhzjm();}voidDaoChu(){structstudentt;inti=0;FILE*fp=fopen("student.txt","r");shuliang=0;if(NULL==fp){perror("讀取文件翻開失??!\n");return;}memset(student,0x0,sizeof(student));while(1){fread(&t,sizeof(t),1,fp);if(ferror(fp)){fclose(fp);perror("讀文件過程失敗!\n");return;}if(feof(fp)){break;}student[i]=t;i++;}fclose(fp);shuliang=i;printf("導(dǎo)出文件成功!\n");fhzjm();}voidmenu(){intn=0;system("CLS");printf("學(xué)生信息管理系統(tǒng)\n");printf("陳椿\n");printf("-------------------MENU-----------------\n");printf("1.登記學(xué)生信息\n");printf("2.刪除學(xué)生信息\n");printf("3.瀏覽所有已經(jīng)登記的學(xué)生\n");printf("4.查找\n");printf("4.1按學(xué)號查找\n");printf("4.2按姓名查找\n");printf("4.3按成績查找\n");printf("5.根據(jù)總成績排序\n");printf("6.存儲到文件\n");printf("7.從文件導(dǎo)出\n");printf("8.退出系統(tǒng)\n");a: printf("

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論