freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

c課程設(shè)計(jì)報(bào)告--班級(jí)檔案管理系統(tǒng)-資料下載頁

2024-11-14 00:56本頁面

【導(dǎo)讀】具體內(nèi)容見附錄。1)設(shè)計(jì)正確,方案合理。2)界面友好,使用方便。3)程序精煉,結(jié)構(gòu)清晰。文用小四號(hào)宋體,行距為22。要的注釋),課程設(shè)計(jì)報(bào)告需5000字左右。上課時(shí)間另外安排。齡、民族、備注。按年齡順序顯示、只顯示男生或女生等等多種形式顯示。一種顯示方式,不限于已列出的方式。e.學(xué)生基本信息查詢:輸入學(xué)號(hào)或姓名,顯示其完整信息。的功能并不限于上述,可以對其進(jìn)行擴(kuò)充完善,如在對信息進(jìn)行修改和刪除時(shí),可以考慮系統(tǒng)的安全性,在執(zhí)行前若輸入正確密碼,才可進(jìn)行操作。本系統(tǒng)主要采用鏈表,結(jié)構(gòu)。voidrevise插入學(xué)生信息。主菜單部分,用來提醒用戶需要選擇哪些功能。句來執(zhí)行用戶選擇的功能模塊,每一個(gè)case后面就是對應(yīng)的功能函數(shù)。果用戶選擇輸入的數(shù)字范圍不在1-9的范圍之內(nèi),系統(tǒng)會(huì)返回主菜單界面,

  

【正文】 r\n)。 for(i=0。in。i++) { fprintf(fp,%20s%20s%20s%40d%10s,t[i].name,t[i].no,t[i].sex,t[i].wYears,t[i].remark)。 fprintf(fp,\r\n)。 } fclose(fp)。 printf(****save success***\n)。 } int load(STUDENT t[]) { int i,n。 FILE *fp。 if((fp=fopen(,rb))==NULL) { printf(can not open file\n)。 exit(1)。 } fscanf(fp,%d,amp。n)。 for(i=0。in。i++) fscanf(fp,%20s%20s%20s%40d%10s,t[i].name,t[i].no,t[i].sex,t[i].wYears,amp。t[i].remark)。 fclose(fp)。 23 printf(You have success read data from file!!!\n)。 return n。 } void display(STUDENT t[]) { int id,n。 FILE *fp。 if((fp=fopen(,rb))==NULL) { printf(can not open file\n)。 exit(1)。 } printf(Enter order number...\n)。 scanf(%d,amp。id)。 fscanf(fp,%d,amp。n)。 if(id=0amp。amp。idn) { fseek(fp,(id1)*sizeof(STUDENT),1)。 print(t[id])。 printf(\r\n)。 } else printf(no %d number record!!!\n ,id)。 fclose(fp)。 } void sort(STUDENT t[],int n) { int i,j,flag。 STUDENT temp。 for(i=0。in。i++) { flag=0。 for(j=0。jn1。j++) if((strcmp(t[j].name,t[j+1].name))0) { flag=1。 strcpy(,t[j].name)。 strcpy(,t[j].no)。 strcpy(,t[j].sex)。 24 =t[j].wYears。 strcpy(,t[j].remark)。 strcpy(t[j].name,t[j+1].name)。 strcpy(t[j].no,t[j+1].no)。 strcpy(t[j].sex,t[j+1].sex)。 t[j].wYears=t[j+1].wYears。 strcpy(t[j].remark,t[j+1].remark)。 strcpy(t[j+1].name,)。 strcpy(t[j+1].no,)。 strcpy(t[j+1].sex,)。 t[j+1].wYears=。 strcpy(t[j+1].remark,)。 } if(flag==0)break。 } printf(sort sucess!!!\n)。 } void qseek(STUDENT t[],int n) { char s[20]。 int l,r,m。 printf(\nPlease sort before qseek!\n)。 printf(please enter name for qseek\n)。 scanf(%s,s)。 l=0。r=n1。 while(l=r) { m=(l+r)/2。 if(strcmp(t[m].name,s)==0) { print(t[m])。 return 。 } if(strcmp(t[m].name,s)0) l=m+1。 else r=m1。 } if(lr) printf(not found\n)。 } 25 int revise(STUDENT t[]) { int i,n。 printf(\nplease input num \n)。 scanf(%d,amp。n)。 printf(please input record \n)。 printf(name no sex wYears remark\n)。 printf(\n)。 for(i=0。in。i++) { scanf(%s%s%s%d%s,t[i].name,t[i].no,t[i].sex,amp。t[i].wYears,amp。t[i].remark)。 printf(\n)。 } return n。 } void copy() { char outfile[20]。 int i,n。 STUDENT temp[M]。 FILE *sfp,*tfp。 if((sfp=fopen(,rb))==NULL) { printf(can not open file\n)。 exit(1)。 } printf(Enter outfile name,for example c:\\f1\\:\n)。 scanf(%s,outfile)。 if((tfp=fopen(outfile,wb))==NULL) { printf(can not open file\n)。 exit(1)。 } fscanf(sfp,%d,amp。n)。 26 fprintf(tfp,%d,n)。 fprintf(tfp,\r\n)。 for(i=0。in。i++) { fscanf(sfp,%20s%20s%20s%40d%10c\n,temp[i].name,temp[i].no,temp[i].sex,temp[i].wYears,amp。temp[i].remark)。 fprintf(tfp,%20s%20s%20s%40d%10s\n,temp[i].name,temp[i].no,temp[i].sex,temp[i].wYears,temp[i].remark)。 fprintf(tfp,\r\n)。 } fclose(sfp)。 fclose(tfp)。 printf(you have success copy file!!!\n)。 } 27 計(jì)算機(jī)科學(xué)與技術(shù)系課程設(shè)計(jì)評(píng)分表 課程名稱: C 語言程序設(shè)計(jì) 項(xiàng) 目 評(píng) 價(jià) 設(shè)計(jì)方案的合理性與創(chuàng)造性 設(shè)計(jì)與調(diào)試結(jié)果 設(shè)計(jì)說明書的質(zhì)量 答辯陳述 與回答問題情況 課程設(shè)計(jì)周表現(xiàn)情況 綜合成績 教師簽名: 日 期:
點(diǎn)擊復(fù)制文檔內(nèi)容
研究報(bào)告相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1