資源描述:
《C語言 課程設(shè)計(jì) 教師工資管理系統(tǒng)(職工工資管理系統(tǒng))資料》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在學(xué)術(shù)論文-天天文庫。
1、課程設(shè)計(jì)教師工資管理系統(tǒng)運(yùn)行平臺(tái):VC6.0(其他平臺(tái)未經(jīng)測試,不一定保證有效)制作者:弓箭中南大學(xué)信息科學(xué)與工程學(xué)院源代碼如下:#include#include#include#include#defineLENsizeof(structteacher)structteacher{intnum;charname[20];charsex[20];charworkplace[50];charaddress[50];longphone;doublede_s
2、alary;doublede_jintie;doublede_shenghuobutie;doubleyingfa_salary;doublecost_phone;doublecost_water_elec;doublecost_rent;doublecost_tax;doublecost_weisheng;doublecost_gongjijin;doublecost_all;doubleshifa_salary;structteacher*next;};/**********************************
3、*讀取函數(shù)************************************/structteacher*load(){structteacher*p1,*p2,*head;FILE*fp;inti=1;if((fp=fopen("save","rb"))==NULL){printf("文件不存在!按下任意鍵返回主菜單...");getch();return(NULL);}else{head=NULL;p1=(structteacher*)malloc(LEN);while(fread(p1,LEN-4,1,fp)==1
4、){if(i==1){head=p1;p2=p1;i=2;}else{p2->next=p1;p2=p2->next;}p1=(structteacher*)malloc(LEN);}p2->next=NULL;free(p1);fclose(fp);return(head);}}/**********************************歡迎菜單函數(shù)*************************************/voidwelcome(){printf(">>>>>歡迎使用教師工資管理系統(tǒng)B
5、eta1.2<<<<<");printf("*******************************************************");printf("*C語言課程設(shè)計(jì)教師工資管理系統(tǒng)*");printf("*班級(jí):電氣信息類1001班學(xué)號(hào):0909100119*");printf("*姓名:弓箭*");printf("*******************************************************");printf("按下任意鍵進(jìn)入系統(tǒng)..
6、.");getch();system("cls");}/**********************************制作人員名單*************************************/voidlist(){system("cls");printf(">>>>>版權(quán)所有侵權(quán)必究<<<<<");printf("*******************************************************************************");printf
7、("*學(xué)校(College):中南大學(xué)CentralSouthUniversity*");printf("*軟件名稱(Software):教師工資管理系統(tǒng)Teacher'sSalaryManagingSystem*");printf("*版本號(hào)(Edition):Beta1.2*");printf("*制作人(Producer):弓箭James*");printf("*所在班級(jí)(Class):電氣信息類1001班ElectricInformation1001*");printf("*所在學(xué)院(Institu
8、te):信息科學(xué)與工程學(xué)院InformationEngineeringInstitute*");printf("*******************************************************************************