![學(xué)生籍貫信息管理系統(tǒng)(c)_第1頁(yè)](http://file2.renrendoc.com/fileroot_temp3/2021-7/13/cb98dcb2-9cb6-459f-8792-69f2cfd022c1/cb98dcb2-9cb6-459f-8792-69f2cfd022c11.gif)
![學(xué)生籍貫信息管理系統(tǒng)(c)_第2頁(yè)](http://file2.renrendoc.com/fileroot_temp3/2021-7/13/cb98dcb2-9cb6-459f-8792-69f2cfd022c1/cb98dcb2-9cb6-459f-8792-69f2cfd022c12.gif)
![學(xué)生籍貫信息管理系統(tǒng)(c)_第3頁(yè)](http://file2.renrendoc.com/fileroot_temp3/2021-7/13/cb98dcb2-9cb6-459f-8792-69f2cfd022c1/cb98dcb2-9cb6-459f-8792-69f2cfd022c13.gif)
![學(xué)生籍貫信息管理系統(tǒng)(c)_第4頁(yè)](http://file2.renrendoc.com/fileroot_temp3/2021-7/13/cb98dcb2-9cb6-459f-8792-69f2cfd022c1/cb98dcb2-9cb6-459f-8792-69f2cfd022c14.gif)
![學(xué)生籍貫信息管理系統(tǒng)(c)_第5頁(yè)](http://file2.renrendoc.com/fileroot_temp3/2021-7/13/cb98dcb2-9cb6-459f-8792-69f2cfd022c1/cb98dcb2-9cb6-459f-8792-69f2cfd022c15.gif)
版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、l29, the company responsible for a variety of procedures for reimbursement document, invoice review, approval of work; 30, regularly convened general meeting of shareholders, preparation work for the meeting; 31, the company responsible for payroll management jobs, including around salary survey, em
2、ployee salary, salary accounting methods developed, payroll accounting, payment of wages, bonuses; 32, the company responsible for delivery of financial procedures; 33, according to the companys strategic development plan, the preparation and management of funds to meet day-to-day operating funding
3、requirements to ensure the companys safety, liquidity and profitability of the funds; 34, responsible for the environmental protection building materials Corporation issued by the Corporation Annual, monthly economic indicators in the assessment of the economic responsibility system of proposed amen
4、dments; 35, the company responsible for all types of contracts and tracking, implementation, implementation of the agreement, abnormality was detected in time to take appropriate measures and feedback to the leadership; 36, regular inspection, analysis, budget implementation of the business and fina
5、ncial performance, and to propose measures to increase revenue and reduce expenditure; 37, responsible for organizing the companys contracting business tenders; 38, responsible for preparing the annual budget and final accounts, distribution of profits, loss compensation plan; 39, responsible for th
6、e violations of financial discipline, or damage the companys interests (corruption and bribery) review of the Act; 40,學(xué)生籍貫信息管理系統(tǒng)(c).txt吃吧吃吧不是罪,再胖的人也有權(quán)利去增肥!苗條背后其實(shí)是憔悴,愛你的人不會(huì)在乎你的腰圍!嘗嘗闊別已久美食的滋味,就算撐死也是一種美!減肥最可怕的不是饑餓,而是你明明不餓但總覺得非得吃點(diǎn)什么才踏實(shí)。編制一個(gè)學(xué)生籍貫信息管理系統(tǒng),每個(gè)學(xué)生信息包括:學(xué)號(hào)、姓名、籍貫。具體功能: (1)創(chuàng)建信息鏈表并以磁盤文件保存; (2)讀取磁盤文件并
7、顯示輸出所有學(xué)生的籍貫信息; (3)按學(xué)號(hào)或姓名查詢其籍貫; (4)按籍貫查詢并輸出該籍貫的所有學(xué)生; (5)能添加、刪除和修改學(xué)生的籍貫信息#include #include #define LEN sizeof(struct student)#define NULL 0struct studentlong num;char name20;char jg20;struct student *next;int n=0;void save(struct student *head) FILE *fp;char filename20;struct student *p1;printf(Please
8、 input the filenamen);scanf(%s,filename);if(fp=fopen(filename,w)=NULL) printf(cant open filen); return; for(p1=head;p1!=NULL;p1=p1-next) fprintf(fp,%ld,p1-num); fputc(t,fp); fprintf(fp,%s,p1-name); fputc(t,fp); fputc(t,fp); fprintf(fp,%s,p1-jg); fputc(n,fp); free(p1);fclose(fp);void print(struct stu
9、dent *head) struct student*p;printf(nNow,these information is:n);p=head;if(head!=NULL)do printf(%ldt%stt%sn,p-num,p-name,p-jg); p=p-next; while(p!=NULL);struct student *creat() struct student *head,*p1,*p2;char ch;p1=p2=(struct student *)malloc(LEN);printf(n Welcome to student jiguan system!n);print
10、f(Please input ones num,name and jiguann);printf(0 0 0:exitn);scanf(%ld%s%s,&p1-num,p1-name,p1-jg);head=NULL;while(p1-num!=0) n=n+1; if(n=1)head=p1; else p2-next=p1; p2=p1; p1=(struct student *)malloc(LEN); scanf(%ld%s%s,&p1-num,p1-name,p1-jg); p2-next=NULL;free(p1);printf(Save?Y/Nn);scanf(%c,&ch);s
11、canf(%c,&ch);if(ch=y|ch=Y) save(head);print(head);return(head);void loadf()FILE *fp;int N=n;char filename20;struct student *p1;p1=(struct student *)malloc(LEN);printf(Please input the filenamen);scanf(%s,filename);if(fp=fopen(filename,r)=NULL) printf(cannot open filen); return; printf(File has been
12、open:n);for (;N!=0;N-) fscanf(fp,%ld%s%s,&p1-num,p1-name,p1-jg); printf(%ldt%stt%sn,p1-num,p1-name,p1-jg); free(p1);fclose(fp);void xsearch(struct student*head)long num; struct student *p1,*p2; int c=0; printf(Please input the search number:n); scanf(%ld,&num); for(p1=head;p1!=NULL;p1=p1-next) if(nu
13、m=p1-num) c=c+1; printf(%ldt%stt%sn,p1-num,p1-name,p1-jg); printf(There are %d results!n,c); void nsearch(struct student*head)char name20; struct student *p1,*p2; int c=0; printf(Please input the search name:n); scanf(%s,name); for(p1=head;p1!=NULL;p1=p1-next) if(strcmp(name,p1-name)=0) c=c+1; print
14、f(%ldt%stt%sn,p1-num,p1-name,p1-jg); printf(There are %d results!n,c);void jsearch(struct student*head)char jg20; struct student *p1,*p2; int c=0; printf(Please input the search jiguan:n); scanf(%s,jg); for(p1=head;p1!=NULL;p1=p1-next) if(strcmp(jg,p1-jg)=0) c=c+1; printf(%ldt%stt%sn,p1-num,p1-name,
15、p1-jg); printf(There are %d results!n,c);void search(struct student*head) int a=4; for(;a!=0;) printf(nWelcome to student juguan system!n); printf(n search information systemn); printf( 0:exitn); printf( 1:use xuehao searchn); printf( 2:use name searchn); printf( 3:use jiguan searchn); printf(Please
16、 select:n); scanf(%d,&a); clrscr(); switch(a) case 0:printf(Thank you for playing!Bye!n); break; case 1:xsearch(head);break; case 2:nsearch(head);break; case 3:jsearch(head);break; default:printf(Choose error,choose again!n);break; struct student *del(struct student *head,struct student *p1) struct
17、student *p2; char ch; if(p1=NULL) printf(No result,cant manage!n); elseif(p1=head) head=p1-next; else for(p2=head;p2-next!=p1;p2=p2-next); p2-next=p1-next; n=n-1; printf(Save the change?Y/Nn); scanf(%c,&ch); scanf(%c,&ch); if(ch=y|ch=Y) save(head); free(p1); free(p2); return(head);void change(struct
18、 student *head,struct student *p1) char ch; if(p1=NULL) printf(No result,cant manage!n); elseprintf(Please input the new information of it.n); scanf(%ld%s%s,&p1-num,p1-name,p1-jg); printf(Save the change?Y/Nn); scanf(%c,&ch); scanf(%c,&ch); if(ch=y|ch=Y) save(head); struct student * add(struct stude
19、nt *head,struct student *p1) int a;char ch;struct student *p0,*p2;p0=p2=(struct student *)malloc(LEN);if(p1=NULL) printf(No result,cant manage!n);else printf(Please input the new students information.n); scanf(%ld%s%s,&p0-num,p0-name,p0-jg); printf(Where would you like to add?n); printf( 1:add befor
20、e itn); printf( 2:add after itn); scanf(%d,&a); switch(a) case 1:if(p1=head) p0-next=p1;head=p0; else for(p2=head;p2-next!=p1;p2=p2-next); p0-next=p1; p2-next=p0; break; case 2:if(p1-next=NULL) p1-next=p0; p0-next=NULL; else p2=p1-next; p0-next=p2; p1-next=p0; break; default:printf(Choose error,choo
21、se again!n); break; n=n+1;printf(Save the change?Y/Nn);scanf(%c,&ch);scanf(%c,&ch);if(ch=Y|ch=y) save(head); free(p0); free(p1); free(p2); return(head);struct student* inman(struct student*head) char ch; int a=4; long num; char name20; char jg20; struct student *p1; printf(Input its feature,so you c
22、an deal with it.n); printf( 0:exitn); printf( 1:input its numbern); printf( 2:input its namen); printf( 3:input its jiguann); scanf(%d,&a); clrscr(); switch(a) case 0:p1=NULL;break; case 1:printf(Please input the search number:n); scanf(%ld,&num); for(p1=head;p1!=NULL;p1=p1-next) if(num=p1-num) prin
23、tf(%ldt%stt%sn,p1-num,p1-name,p1-jg); printf(Is this one you want?n); printf(Y/Nn); scanf(%c,&ch); scanf(%c,&ch); if(ch=Y|ch=y) break; break; case 2:printf(Please input the search name:n); scanf(%s,name); for(p1=head;p1!=NULL;p1=p1-next) if(strcmp(name,p1-name)=0) printf(%ldt%stt%sn,p1-num,p1-name,p
24、1-jg); printf(Is this one you want?n); printf(Y/Nn); scanf(%c,&ch); scanf(%c,&ch); if(ch=Y|ch=y) break; break; case 3:printf(Please input the search jiguan:n); scanf(%s,jg); for(p1=head;p1!=NULL;p1=p1-next) if(strcmp(jg,p1-jg)=0) printf(%ldt%stt%sn,p1-num,p1-name,p1-jg); printf(Is this one you want?
25、n); printf(Y/Nn); scanf(%c,&ch); scanf(%c,&ch); if(ch=Y|ch=y) break; break; default:printf(Choose error,choose again!n);p1=NULL;break; if(p1=NULL) printf(Thats all!n);return p1;struct student * manage(struct student *head) struct student *p1;int a=4;p1=(struct student*)malloc(LEN);for(;a!=0;) printf(nWelcome to the student jiguan system!n); printf(n manage information system n); printf(What are you going to do?n); printf( 0:exitn); printf( 1:add informationn); printf( 2:delete infor
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 日文版勞動(dòng)合同
- 游戲開發(fā)引擎授權(quán)使用及技術(shù)支持服務(wù)協(xié)議
- 三字經(jīng)學(xué)習(xí)感悟
- Oleic-acid-Standard-生命科學(xué)試劑-MCE
- 小學(xué)生經(jīng)典國(guó)學(xué)啟蒙讀后感
- 2-2-Dibutylpropane-1-3-diol-生命科學(xué)試劑-MCE
- 年終團(tuán)隊(duì)建設(shè)活動(dòng)安排
- 年度銷售部門工作總結(jié)報(bào)告新趨勢(shì)與成效分析
- 公司融資計(jì)劃及投資策略分析
- 試用期員工勞動(dòng)合同
- 安防監(jiān)控工程施工方案(3篇)
- 2025年藍(lán)莓種苗行業(yè)深度研究分析報(bào)告
- 第二十一章會(huì)陰部美容手術(shù)講解
- 2025年度iPhone手機(jī)租賃與虛擬現(xiàn)實(shí)體驗(yàn)合同3篇
- 《糖尿病診療規(guī)范》課件
- 2025年度消防工程安全防護(hù)措施設(shè)計(jì)固定總價(jià)合同范本3篇
- 2025年事業(yè)單位財(cái)務(wù)工作計(jì)劃(三篇)
- Unit 2 Know your body(說(shuō)課稿)-2024-2025學(xué)年外研版(三起)(2024)英語(yǔ)三年級(jí)下冊(cè)
- 食品企業(yè)危機(jī)管理應(yīng)對(duì)方案
- 市場(chǎng)消防安全課件
- 名師工作室建設(shè)課件
評(píng)論
0/150
提交評(píng)論