欢迎来到天天文库
浏览记录
ID:54060384
大小:163.50 KB
页数:48页
时间:2020-04-12
《C语言 课程设计 教师工资管理系统(职工工资管理系统).doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、.课程设计教师工资管理系统运行平台:VC6.0(其他平台未经测试,不一定保证有效)制作者:弓箭中南大学信息科学与工程学院源代码如下:#include#include#include#include#defineLENsizeof(structteacher)structteacher{intnum;charname[20];charsex[20];charworkplace[50];charaddress[50];longphone;doublede_salary;doublede_jintie;do
2、ublede_shenghuobutie;doubleyingfa_salary;Word专业资料.doublecost_phone;doublecost_water_elec;doublecost_rent;doublecost_tax;doublecost_weisheng;doublecost_gongjijin;doublecost_all;doubleshifa_salary;structteacher*next;};/***********************************读取函数***********************************
3、*/structteacher*load(){structteacher*p1,*p2,*head;FILE*fp;inti=1;if((fp=fopen("save","rb"))==NULL){printf("文件不存在!按下任意键返回主菜单...");getch();Word专业资料.return(NULL);}else{head=NULL;p1=(structteacher*)malloc(LEN);while(fread(p1,LEN-4,1,fp)==1){if(i==1){head=p1;p2=p1;i=2;}else{p2->next=p1;p2=p2->ne
4、xt;}p1=(structteacher*)malloc(LEN);}p2->next=NULL;Word专业资料.free(p1);fclose(fp);return(head);}}/**********************************欢迎菜单函数*************************************/voidwelcome(){printf(">>>>>欢迎使用教师工资管理系统Beta1.2<<<<<");printf("************************************************
5、*******");printf("*C语言课程设计教师工资管理系统*");printf("*班级:电气信息类1001班学号:0909100119*");printf("*姓名:弓箭*");printf("*******************************************************");printf("按下任意键进入系统...");getch();system("cls");}/**********************************制作人员*******************************
6、******/voidlist(){Word专业资料.system("cls");printf(">>>>>所有侵权必究<<<<<");printf("*******************************************************************************");printf("*学校(College):中南大学CentralSouthUniversity*");printf("*软件名称(Software):教师工资管理系统Teacher'sSalaryManagingSystem*");pri
7、ntf("*版本号(Edition):Beta1.2*");printf("*制作人(Producer):弓箭James*");printf("*所在班级(Class):电气信息类1001班ElectricInformation1001*");printf("*所在学院(Institute):信息科学与工程学院InformationEngineeringInstitute*");printf("***********************************************
此文档下载收益归作者所有