欢迎来到天天文库
浏览记录
ID:39703706
大小:168.50 KB
页数:24页
时间:2019-07-09
《C语言 课程设计 教师工资管理系统(职工工资管理系统)资料》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、课程设计教师工资管理系统运行平台:VC6.0(其他平台未经测试,不一定保证有效)制作者:弓箭中南大学信息科学与工程学院源代码如下:#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、*读取函数************************************/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);}}/**********************************欢迎菜单函数*************************************/voidwelcome(){printf(">>>>>欢迎使用教师工资管理系统B
5、eta1.2<<<<<");printf("*******************************************************");printf("*C语言课程设计教师工资管理系统*");printf("*班级:电气信息类1001班学号:0909100119*");printf("*姓名:弓箭*");printf("*******************************************************");printf("按下任意键进入系统..
6、.");getch();system("cls");}/**********************************制作人员名单*************************************/voidlist(){system("cls");printf(">>>>>版权所有侵权必究<<<<<");printf("*******************************************************************************");printf
7、("*学校(College):中南大学CentralSouthUniversity*");printf("*软件名称(Software):教师工资管理系统Teacher'sSalaryManagingSystem*");printf("*版本号(Edition):Beta1.2*");printf("*制作人(Producer):弓箭James*");printf("*所在班级(Class):电气信息类1001班ElectricInformation1001*");printf("*所在学院(Institu
8、te):信息科学与工程学院InformationEngineeringInstitute*");printf("*******************************************************************************
此文档下载收益归作者所有