1.題目及總體設(shè)計(jì)
目前創(chuàng)新互聯(lián)公司已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計(jì)、湟源網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。題目:?jiǎn)T工信息管理系統(tǒng)
總體設(shè)計(jì):1.實(shí)現(xiàn)添加功能,即添加員工的相關(guān)信息。
2.實(shí)現(xiàn)查看功能,即顯示系統(tǒng)中所有員工的相關(guān)信息。
3.實(shí)現(xiàn)查找功能,即可以通過多種條件對(duì)員工進(jìn)行查詢。
4.實(shí)現(xiàn)修改功能,即輸入員工的姓名修改其相關(guān)信息。
5.實(shí)現(xiàn)刪除功能,即輸入員工的姓名刪除其相關(guān)信息。
6.退出系統(tǒng)。
2.各個(gè)模塊詳細(xì)的功能描述
(1).輸入員工信息功能模塊:用struct Employee * Create(),void Add(struct Employee * pHead)函數(shù)實(shí)現(xiàn)將用戶從鍵盤輸入的數(shù)據(jù)存儲(chǔ)到對(duì)應(yīng)字段或數(shù)據(jù)成員中,并檢查輸入的合法性。
(2).顯示員工信息功能模塊:調(diào)用void Show(struct Employee * pHead); void ShowLine();void ShowHead(int iType); void ShowMainMenu()函數(shù)用戶根據(jù)提示操作顯示系統(tǒng)中已有的員工的相關(guān)信息,如果系統(tǒng)中海沒有存儲(chǔ)員工信息則給出無法顯示信息的提示。
(3).查詢員工信息功能模塊:調(diào)用struct Employee * Search(struct Employee *pHead);函數(shù)根據(jù)用戶輸入的待查詢記錄的關(guān)鍵字,在數(shù)據(jù)結(jié)構(gòu)中查找該記錄,如找到則輸出該員工的信息,否則給出無法找到的提示信息。
(4).修改員工信息功能模塊:調(diào)用void Modify(struct Employee * pHead);函數(shù),根據(jù)用戶要求,根據(jù)提示操作,找到要修改信息的員工然后修改員工的相關(guān)信息,如年齡。工資等。
(5).刪除員工信息功能模塊:調(diào)用void Delete(struct Employee * pHead);函數(shù),由用戶輸入選擇刪除相關(guān)的員工的信息。
(6).退出系統(tǒng)功能模塊:在用戶執(zhí)行完相關(guān)系統(tǒng)操作之后,退出使用本系統(tǒng)。
3.測(cè)試結(jié)果分析與說明
(1).正常測(cè)試數(shù)據(jù)和運(yùn)行結(jié)果
第一組:實(shí)現(xiàn)添加員工信息并顯示員工的信息的功能,操作如下圖:
第二組:查詢員工信息功能,操作如下圖:
第三組:實(shí)現(xiàn)修改員工信息的功能,并顯示修改后的員工信息,操作如下圖:
(2).異常測(cè)試數(shù)據(jù)及運(yùn)行結(jié)果
第一組:添加員工信息后表格不顯示,操作如下圖:
第二組:緩沖區(qū)空格被gets函數(shù)讀取,操作如下圖:
4.課程設(shè)計(jì)小結(jié)
(1).改進(jìn)方案
員工信息管理系統(tǒng)中,其功能包括了存儲(chǔ)和讀寫員工的基本信息,例如姓名、年齡、職位、工資等,都有存儲(chǔ)記錄,和可以再讀取,編程也實(shí)現(xiàn)由增、刪、查、改等的功能,且本系統(tǒng)是基于鏈表和文件編程實(shí)現(xiàn)的,使用和操作本系統(tǒng)基本沒問題,達(dá)到了一個(gè)企業(yè)員工基本信息管理的要求。
但是也存在很多不足之處,首先,本系統(tǒng)的功能還是比較少的,明顯的一個(gè)就是缺少了排序,例如按員工的姓名或工號(hào)的信息排序等,所以修改完善本系統(tǒng)時(shí)可以添加排序功能,其次操作界面也有不夠完美,所以修改也可以設(shè)計(jì)更好的界面。
(2).體會(huì)
的課程設(shè)計(jì)中,我選定的是編寫一個(gè)員工信息管理系統(tǒng),要想完成這個(gè)管理系統(tǒng),首先要分析好系統(tǒng)應(yīng)具備的功能,要根據(jù)要求確定管理系統(tǒng)的這的整體布局結(jié)構(gòu),然后再一一細(xì)化系統(tǒng)的各個(gè)功能模塊,之后再有思路的編程,通過代碼實(shí)現(xiàn),代碼完成后,進(jìn)行跟蹤調(diào)試程序,將代碼的錯(cuò)誤的警告都更正,不斷的完善代碼,加強(qiáng)系統(tǒng)的穩(wěn)定性和操作性。
通過這次的課程設(shè)計(jì),讓我更進(jìn)一步的掌握C語言鏈表和文件的使用,通過對(duì)企業(yè)管理系統(tǒng)功能的分析和確定系統(tǒng)的整體布局結(jié)構(gòu),然后在遇到不會(huì)問題的就通過翻閱書本或問同學(xué)解決,這些提高了我整體分析和解決問題的能力,同時(shí)在一系列的代碼編程中,也使我的代碼編程能力有所提高,還有,在完成這次的課程設(shè)計(jì)也讓我深刻的體會(huì)到基礎(chǔ)很重要,企業(yè)員工管理系統(tǒng)看似實(shí)現(xiàn)復(fù)雜,但是都是基于我們所學(xué)的基本知識(shí),所以加強(qiáng)基礎(chǔ)是很關(guān)鍵的,在今后的學(xué)習(xí)中就告誡我們要一步一個(gè)腳印,踏踏實(shí)實(shí)的掌握知識(shí),這次的課程設(shè)計(jì)讓我收獲很多,受益匪淺。
源代碼:
?
#include#include#include#include//函數(shù)聲明
void ShowMainMenu();
int CheckNum(char*pcNotice);
int CheckAge(char*pcNotice);
struct Employee * Create();
void Add(struct Employee * pHead);
struct Employee * Search(struct Employee *pHead);
void Modify(struct Employee * pHead);
void Delete(struct Employee * pHead);
void ShowLine();
void ShowHead(int iType);
struct Employee*Read();
void Show(struct Employee * pHead);
struct Employee
{
int iNumber;//工號(hào)
char acName[999];//姓名
int Age;
char Sex[999];
int fSalary;//薪資
struct Employee *pNext;
};
int CheckNum(char *pcNotice)
{
int Num;
do
{
printf(pcNotice);
scanf("%d",&Num);
getchar();
}while(Num<0);
return Num;
}
int CheckAge(char *pcNotice)
{
int iAge;
do
{
printf(pcNotice);
scanf("%d",&iAge);
}while(iAge<0);
return iAge;
}
void ShowHead(int iType)
{
printf("\t\t員工信息管理系統(tǒng)\n");
if(iType==1)
{
printf("\t|工號(hào)\t|姓名\t|性別\t|年齡\t|薪資\t\n");
}
else if(iType==2)
{
printf("\t|工號(hào)\t|姓名\t|性別\t|年齡\t|薪資\t\n");
}
}
void Show(struct Employee * pHead)
{
struct Employee * pCur = pHead;
int i=0;
if(pHead==NULL)
{
printf("======沒有員工記錄======\n");
}
else
{
ShowHead(1);
do{
printf("\t|%-6d |%-7s|%-7s|%-7d|%-d\t\n",pCur->iNumber,pCur->acName,pCur->Sex,pCur->Age,pCur->fSalary);
ShowLine();
pCur=pCur->pNext;
}while(pCur!=NULL);
}
}
struct Employee * Create()
{
struct Employee * pHead = NULL, *pTail = NULL, *pTemp,*pCur;
int iNum,iFlag;
while(1)
{
while(1)
{
iNum = CheckNum("請(qǐng)輸入員工工號(hào)(輸入0退出):");
if(iNum==0)
{
printf("添加結(jié)束!新表是:\n");
Show(pHead);
return pHead;
}
iFlag=0;
pCur = pHead;
while(pCur!= NULL)
{
if(pCur->iNumber==iNum)
{
iFlag=1;
break;
}
pCur = pCur->pNext;
}
if(iFlag == 1)
{
printf("工號(hào)重復(fù),請(qǐng)?jiān)俅屋斎?\n");
continue;
}
else
break;
}
pTemp =(struct Employee *)malloc(sizeof(struct Employee));
if(pTemp == NULL)
{
printf("\n分配內(nèi)存失敗\n");
return NULL;
}
pTemp->iNumber = iNum;
printf("輸入員工姓名:");
gets(pTemp->acName);
printf("請(qǐng)輸入性別(男/女):");
gets(pTemp->Sex);
printf("請(qǐng)輸入薪水:");
scanf("%d",&pTemp->fSalary);
//getchar();
//gets(pTemp->fSalary);
pTemp->Age=CheckAge("請(qǐng)輸入年齡:");
pTemp->pNext =NULL;
if(!pHead)
{
pHead = pTail = pTemp;
}
else
{
pTail->pNext = pTemp;
pTail = pTemp;
}
}
}
struct Employee * Search(struct Employee *pHead)
{
struct Employee *pCur =pHead;
int iNum=0,iItem=0;
char acName[10];
if(pHead==NULL)
{
printf("\n=====沒有員工記錄!======\n");
return NULL;
}
printf("\t1:輸入員工工號(hào)\n\t2:輸入員工姓名\n");
printf("請(qǐng)輸入你的選項(xiàng):");
scanf("%d",&iItem);
getchar();
switch(iItem)
{
case 1:
printf("請(qǐng)輸入員工工號(hào):");
scanf("%d",&iNum);
while(pCur!=NULL)
{
if(iNum ==pCur->iNumber)
{
ShowHead(1);
printf("\t|%-6d |%-7s|%-7s|%-7d|%-d\t\n",pCur->iNumber,pCur->acName,pCur->Sex,pCur->Age,pCur->fSalary);
ShowLine();
return pCur;
}
pCur=pCur->pNext;
}
if(pCur==NULL)
{
printf("員工數(shù)據(jù)未找到!\n");
}
break;
case 2:
printf("請(qǐng)輸入員工姓名");
gets(acName);
while(pCur!=NULL);
{
if(strcmp(acName,pCur->acName)==0)
{
ShowHead(1);
printf("\t|%-6d |%-7s|%-7s|%-7d|%-d\t\n",pCur->iNumber,pCur->acName,pCur->Sex,pCur->Age,pCur->fSalary);
ShowLine();
return pCur;
}
pCur=pCur->pNext;
}
if(pCur==NULL)
{
printf("員工數(shù)據(jù)未找到!\n");
}
break;
default:
printf("輸入工號(hào)數(shù)據(jù)錯(cuò)誤!\n");
}
return pCur;
}
void Add(struct Employee * pHead)
{
struct Employee * pCur,*pTail,*pTemp;
int iNum,iFlag;
if(pHead==NULL)
{
printf( "\n 沒有員工數(shù)據(jù),請(qǐng)首次創(chuàng)建!\n");
return;
}
pCur = pHead;
while(pCur->pNext!=NULL)
pCur = pCur->pNext;
pTail =pCur;
while(1)
{
while(1)
{
iNum=CheckNum("請(qǐng)輸入員工工號(hào):");
if(iNum==0)
{
printf("添加完成,新的表是:\n");
Show(pHead);
return;
}
iFlag=0;
pCur = pHead;
while(pCur!= NULL)
{
if(pCur->iNumber==iNum)
{
iFlag=1;
break;
}
pCur = pCur->pNext;
}
if(iFlag == 1)
{
printf("工號(hào)重復(fù),請(qǐng)?jiān)俅屋斎?\n");
continue;
}
else
break;
}
pTemp =(struct Employee *)malloc(sizeof(struct Employee));
if(pTemp == NULL)
{
return;
}
pTemp->iNumber = iNum;
printf("輸入員工姓名:");
gets(pTemp->acName);
printf("請(qǐng)輸入性別(男/女):");
gets(pTemp->Sex);
printf("請(qǐng)輸入薪水:");
scanf("%d",&pTemp->fSalary);
//getchar();
//gets(pTemp->fSalary);
pTemp->Age=CheckAge("請(qǐng)輸入年齡:");
pTemp->pNext=NULL;
if(!pHead)
{
pHead = pTail = pTemp;
}
else
{
pTail->pNext = pTemp;
pTail = pTemp;
}
}
}
void Modify(struct Employee * pHead)
{ struct Employee * pCur=pHead;
struct Employee * pTemp=NULL;
pTemp = Search(pHead);
if(pTemp !=NULL)
{
printf("\n\t請(qǐng)輸入新的員工數(shù)據(jù)!f\t\n");
pTemp->iNumber =CheckNum("請(qǐng)輸入工號(hào)");
printf("輸入員工姓名:");
gets(pTemp->acName);
printf("請(qǐng)輸入性別(男/女):");
gets(pTemp->Sex);
pTemp->Age=CheckAge("請(qǐng)輸入年齡:");
printf("請(qǐng)輸入薪水:");
scanf("%d",&pTemp->fSalary);
printf("修改成功!新紀(jì)錄是:\n");
ShowHead(1);
printf("\t|%-6d |%-7s|%-7s|%-7d|%-d\t\n",pCur->iNumber,pCur->acName,pCur->Sex,pCur->Age,pCur->fSalary);
ShowLine();
}
}
void Delete(struct Employee * pHead)
{
struct Employee * pTemp=NULL,*pPre = pHead,*pCur = pHead;
pTemp = Search(pHead);
if(pTemp!=NULL)
{
if(pHead==pTemp)
{
pHead =pHead->pNext;
}
else
{
while(pCur!=pTemp)
{
pPre = pCur;
pCur = pCur->pNext;
}
pPre->pNext = pCur->pNext;
}
free(pTemp);
printf("刪除成功!剩余的員工數(shù)據(jù)是:\n");
Show(pHead);
}
}
void ShowMainMenu()
{ int i;
system("cls");
printf("\n\t\t\t員工信息管理系統(tǒng)\n\n");
for(i=0;i<80;i++)
{
printf("*");
}
printf("\n1.輸入員工數(shù)據(jù)\t\t\t\t\t\t5.更改員工數(shù)據(jù)\t\t\n");
printf("2.添加員工數(shù)據(jù)\t\t\t\t\t\t6.刪除員工數(shù)據(jù)\t\t\n");
printf("3.顯示員工數(shù)據(jù)\t\t\t\t\t\t7.讀取員工數(shù)據(jù)\t\t\n");
printf("4.查找員工數(shù)據(jù)\t\t\t\t\t\t8.保存員工數(shù)據(jù)\t\t\n");
printf("0.退出程序\n");
for(i=0;i<80;i++)
{
printf("*");
}
}
void ShowLine()
{
int i;
for(i=0;i<80;i++)
{
printf("-");
}
printf("\n");
}
struct Employee*Read()
{
FILE*fp;
struct Employee*pHead=NULL,*pTemp=NULL,*pCur=NULL;
char Empsystem[20];
printf("請(qǐng)輸入文件名:");
gets(Empsystem);
if((fp=fopen(Empsystem,"rb"))==NULL)
{
printf("\n無法打開文件\n");
return NULL;
}
pTemp=(struct Employee*)malloc(sizeof(struct Employee));
while(fread(pTemp,sizeof(struct Employee),1,fp))
{
if(!pHead)
{
pHead=pCur=pTemp;
}
else
{
pCur->pNext=pTemp;
pCur=pTemp;
}
pTemp=(struct Employee*)malloc(sizeof(struct Employee));
}
fclose(fp);
Show(pHead);
return pHead;
}
void Save(struct Employee*pHead)
{
FILE*fp;
struct Employee*pCur=pHead;
int iCount=0;
char Empsystem[20];
if(pHead==NULL)
{
printf("查無此人!\n");
return;
}
printf("輸入文件名:");
gets(Empsystem);
if((fp=fopen(Empsystem,"wb"))==NULL)
{
printf("\n無法打開文件\n");
getchar();
exit(1);
}
while(pCur)
{
fwrite(pCur,sizeof(struct Employee),1,fp);
pCur=pCur->pNext;
iCount++;
}
printf("\n======保存完成======\n");
fclose(fp);
}
int main()
{
struct Employee*pHead=NULL;
int iItem;
while (1)
{ShowMainMenu();
printf("\n請(qǐng)輸入(1-8):");
scanf("%d",&iItem);
getchar();
while(iItem>10||iItem<0)
{
scanf("%d",&iItem);
getchar();
}
switch (iItem)
{
case 1:pHead=Create(); break;
case 2:Add(pHead);break;
case 3:Show(pHead);break;
case 4:Search(pHead);break;
case 5:Modify(pHead);break;
case 6:Delete(pHead);break;
case 7:pHead = Read();break;
case 8:Save(pHead);break;
case 0:exit(0);
}
printf("返回主菜單\n");
getch();
}
}
?
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧
網(wǎng)頁題目:C語言員工信息管理系統(tǒng)-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://jinyejixie.com/article20/csojco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、用戶體驗(yàn)、自適應(yīng)網(wǎng)站、網(wǎng)站排名、定制開發(fā)、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容