C課程設計報告-員工信息管理系統(tǒng)_第1頁
C課程設計報告-員工信息管理系統(tǒng)_第2頁
C課程設計報告-員工信息管理系統(tǒng)_第3頁
C課程設計報告-員工信息管理系統(tǒng)_第4頁
C課程設計報告-員工信息管理系統(tǒng)_第5頁
已閱讀5頁,還剩18頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領

文檔簡介

word文檔可自由復制編輯C語言課程設計報告題目:員工信息管理系統(tǒng)院系名稱:計算機學院專業(yè)名稱:軟件工程班級:學生姓名:學號(8位):指導教師:設計起止時間:一.設計目的1.熟練掌握C語言的基本知識和編輯技能。2.基本掌握程序設計的基本思路和方法。3.通過自主編程的過程,對理論學習及動手能力有了很大的提高。二.設計內(nèi)容1.通過管理員和普通用戶登錄界面進入員工管理系統(tǒng)。2.該系統(tǒng)實現(xiàn)錄入,添加,查詢,修改,刪除,排序,統(tǒng)計,瀏覽等功能。3.可以注冊新用戶和修改用戶密碼。三.概要設計1.功能模塊圖;主界主界面登錄主菜單錄入模塊添加模塊修改模塊查詢模塊刪除模塊排序模塊統(tǒng)計模塊瀏覽模塊注冊用戶修改密碼1.錄入模塊:creat1()錄入員工信息。2.文件保存模塊:save_file()保存員工信息。3.文件讀取模塊:read_file()創(chuàng)建模塊并讀取文件中的信息。4.添加模塊:add()添加一位員工的信息。5.修改模塊:change()修改一位員工的信息。6.刪除模塊:delete()刪除某位員工。7.排序模塊:sort()對員工的信息排序。8.查詢模塊:search()查詢某位員工的信息。9.瀏覽模塊:output()瀏覽所有員工的信息。10.統(tǒng)計模塊:record()對員工的信息進行統(tǒng)計。11.登錄模塊:login()給系統(tǒng)設置密碼,選擇用戶界面。12.注冊模塊:sign()注冊新用戶。13.密碼修改模塊:modify()修改用戶名密碼。四.詳細設計1.功能函數(shù)的調(diào)用關系圖主函數(shù)主函數(shù)Login()(0Sign()Modify()Creat1()Add()Change()Output()Delete()Record()Sort()Search()2.各功能函數(shù)的數(shù)據(jù)流程圖管理員界面登錄模塊管理員界面登錄模塊用戶界面輸入密碼退出系統(tǒng)注冊模塊注冊模塊注冊新的用戶名和設置密碼。退出系統(tǒng)修改密碼修改密碼通過輸入原先的用戶名和舊密碼,若都正確,則輸入新密碼,否則不能修改。退出系統(tǒng)錄入信息模塊錄入信息模塊輸入員工信息繼續(xù)錄入不繼續(xù)返回主菜單添加信息模塊添加信息模塊輸入員工號輸入員工信息返回主菜單修改信息模塊修改信息模塊輸入要修改的員工號選擇要修改的一項保存在文件中返回主菜單刪除信息模塊刪除信息模塊輸入要刪除的員工姓名員工不存在員工存在返回主菜單查詢信息模塊查詢信息模塊輸入查詢選項員工號姓名輸出返回主菜單員工排序模塊員工排序模塊年齡排序員工號排序工資排序輸出返回主菜單統(tǒng)計信息模塊統(tǒng)計信息模塊按年齡統(tǒng)計按工資統(tǒng)計輸出統(tǒng)計人數(shù)返回主菜單瀏覽信息模塊瀏覽信息模塊輸出所有員工信息返回主菜單3.重點設計及編碼在員工排序時,用的是冒泡排序,交換的是指針域。for(r=head1;r!=NULL;r=r->next)for(p=head1;p->next->next!=NULL;p=p->next){if((p->next->age)>(p->next->next->age)){t=p->next->next;p->next->next=t->next;t->next=p->netx;p->next=t;}}五.測試數(shù)據(jù)及運行結(jié)果1.正常測試數(shù)據(jù)和運行結(jié)果登錄界面(用管理員賬號登錄)進入系統(tǒng):瀏覽員工信息(輸入1)對員工按年齡進行排序查詢員工信息修改員工信息2.異常測試數(shù)據(jù)及運行結(jié)果當你輸入不在范圍的數(shù)據(jù)時會顯示出錯。輸入不存在的員工姓名,會提示你此人不存在。六.調(diào)試情況,設計技巧及體會1.改進方案通過這次c語言程序設計,很大程度上鍛煉了我們寫程序的動手能力和自主思考能力。但還是有很多不足之處:1.沒有對界面進行操作,只是實現(xiàn)了簡單的功能。2.部分代碼較繁瑣,可利用率不高。3.程序注釋不是太完善。4.對于數(shù)據(jù)的錯誤輸入提示不明確。2.體會通過這次課程設計,我對C語言有了更深刻的了解,增強了程序的編寫能力,鞏固了專業(yè)知識,對程序的模塊化觀念也由模糊逐漸變得清晰了。在程序的運行與調(diào)試過程中出現(xiàn)了很多錯誤,通過反復地復習課本上的知識和上網(wǎng)查詢資料等,不停地修改與調(diào)試,我終于完成了這段程序,在調(diào)試過程中,我認識到了C語言的靈活性與嚴謹性,同一個功能可以由不同的語句實現(xiàn),但編寫程序時要特別注意細節(jié)方面的問題,因為一個小小的疏忽就能導致整個程序不能運行。當然我也認識到了自己的薄弱之處,如文件運用的不熟練,在以后的學習中我要集中精力、端正態(tài)度,爭取把知識學得更扎實、更全面。七.參考文獻《C語言程序設計》王曙燕科學出版社《C語言程序設計》譚浩強清華大學出版社八.附錄:#include<stdio.h>#include<string.h>#include<malloc.h>#include<stdlib.h>structnode{charid[10];/*員工號*/charname[20];/*姓名*/charsex;/*性別*/intage;/*年齡*/charpost[20];/*職位*/intb_pay;/*底薪*/intreward;/*獎金*/intreal_pay;/*實際工資*/structnode*next;};structcode{charname[10];/*用戶名*/charmima[10];/*密碼*/structcode*next;};/*錄入模塊*/structnode*creat_1()/*尾插法創(chuàng)建帶頭結(jié)點的單鏈表*/{structnode*head1,*r,*s;inti=0;charchoice;head1=(structnode*)malloc(sizeof(structnode));/*創(chuàng)建頭結(jié)點*/r=head1;do{s=(structnode*)malloc(sizeof(structnode));printf("請輸入第%d個人的信息:\n",++i);printf("輸入員工序號:");scanf("%s",s->id);printf("輸入員工姓名:");getchar();scanf("%s",s->name);printf("輸入員工性別:");getchar();scanf("%c",&s->sex);printf("輸入員工年齡:");scanf("%d",&s->age);printf("輸入員工職位:");getchar();scanf("%s",s->post);printf("輸入員工底薪:");scanf("%d",&s->b_pay);printf("輸入員工獎金:");scanf("%d",&s->reward);printf("輸入員工實際工資:");scanf("%d",&s->real_pay);r->next=s;/*尾插新結(jié)點*/r=s;/*指向尾結(jié)點*/printf("是否繼續(xù)錄入?(Y/N):");getchar();choice=getchar();}while(choice=='Y'||choice=='y');r->next=NULL;returnhead1;}/*員工文件保存模塊*/voidsave_file(structnode*head1)/*將單鏈表的信息保存到指定的磁盤文件中*/{structnode*s;FILE*fp;if((fp=fopen("s.txt","wt"))==NULL){printf("寫文件出錯,按任意鍵退出!\n");getchar();exit(1);}for(s=head1->next;s!=NULL;s=s->next)fprintf(fp,"%s%s%c%d%s%d%d%d\n",s->id,s->name,s->sex,s->age,s->post,s->b_pay,s->reward,s->real_pay);printf("\n文件已成功保存,按任意鍵返回.");getchar();fclose(fp);}/*員工文件讀取模塊*/structnode*read_file()/*從指定的磁盤文件中讀取信息并存入單鏈表*/{structnode*head1,*r,*s;FILE*fp;if((fp=fopen("s.txt","r"))==NULL){printf("讀文件出錯,按任意鍵退出!\n");getchar();exit(1);}head1=(structnode*)malloc(sizeof(structnode));r=head1;while(!feof(fp)){s=(structnode*)malloc(sizeof(structnode));fscanf(fp,"%s%s%c%d%s%d%d%d\n",s->id,s->name,&s->sex,&s->age,s->post,&s->b_pay,&s->reward,&s->real_pay);r->next=s;r=s;}r->next=NULL;fclose(fp);returnhead1;}/*密碼錄入模塊*/structcode*creat_2()/*尾插法創(chuàng)建帶頭結(jié)點的單鏈表*/{structcode*head2,*r,*s;inti=0;charchoice;head2=(structcode*)malloc(sizeof(structcode));r=head2;do{s=(structcode*)malloc(sizeof(structcode));printf("請輸入第%d個人的信息:\n",++i);printf("請輸入用戶名:");scanf("%s",s->name);printf("請輸入密碼:");scanf("%s",s->mima);r->next=s;/*尾插新結(jié)點*/r=s;/*指向尾結(jié)點*/printf("是否繼續(xù)?(Y/N):");getchar();choice=getchar();}while(choice=='Y'||choice=='y');r->next=NULL;returnhead2;}/*密碼文件保存模塊*/voidsave_inf(structcode*head2)/*將單鏈表的信息保存到指定的磁盤文件中*/{structcode*s;FILE*fp;if((fp=fopen("yuan.txt","wt"))==NULL){printf("寫文件出錯,按任意鍵退出!\n");getchar();exit(1);}for(s=head2->next;s!=NULL;s=s->next)fprintf(fp,"%s%s\n",s->name,s->mima);printf("\n文件已成功保存.按任意鍵返回.");getchar();fclose(fp);}/*密碼文件讀取模塊*/structcode*read_inf()/*從指定的磁盤文件中讀取信息并存入單鏈表*/{structcode*head2,*r,*s;FILE*fp;if((fp=fopen("yuan.txt","r"))==NULL){printf("讀文件出錯,按任意鍵退出!\n");getchar();exit(1);}head2=(structcode*)malloc(sizeof(structcode));r=head2;while(!feof(fp))/*文件未結(jié)束*/{s=(structcode*)malloc(sizeof(structcode));/*開辟新空間存放讀取的信息*/fscanf(fp,"%s%s",s->name,s->mima);r->next=s;r=s;}printf("文件中信息已正確讀出,按任意鍵返回!\n");r->next=NULL;fclose(fp);returnhead2;}/*輸出員工信息模塊*/voidoutput(structnode*head1){structnode*s;printf("\n序號\t姓名\t性別\t年齡\t職位\t底薪\t獎金\t實際工資\n");for(s=head1->next;s!=NULL;s=s->next)printf("%s\t%s\t%c\t%d\t%s\t%d\t%d\t%d\n",s->id,s->name,s->sex,s->age,s->post,s->b_pay,s->reward,s->real_pay);}/*添加員工信息模塊*/voidadd(structnode*head1){structnode*r,*p,*s;r=head1;charchoice;printf("---------------------------------\n");printf("***********添加員工信息**********\n");printf("---------------------------------\n");do{p=(structnode*)malloc(sizeof(structnode));printf("請輸入您添加的員工信息:\n");printf("輸入員工序號:");scanf("%s",p->id);printf("輸入員工姓名:");getchar();scanf("%s",p->name);printf("輸入員工性別:");getchar();scanf("%c",&p->sex);printf("輸入員工年齡:");scanf("%d",&p->age);printf("輸入員工職位:");getchar();scanf("%s",p->post);printf("輸入員工底薪:");scanf("%d",&p->b_pay);printf("輸入員工獎金:");scanf("%d",&p->reward);printf("輸入員工實際工資:");scanf("%d",&p->real_pay);p->next=r->next;r->next=p;save_file(head1);printf("\n是否繼續(xù)添加(Y/N):");choice=getchar();}while(choice=='Y'||choice=='y');}/*修改員工信息模塊*/change(structnode*head1){structnode*p;p=head1;charname[10];charchoose;intchoice,flag;do{printf("**********************************************\n");printf("-----------修改員工信息------------\n");printf("**********************************************\n");printf("請輸入您要修改的員工姓名:");getchar();gets(name);while(p!=NULL){if(strcmp(p->name,name)==0){printf("\n序號\t姓名\t性別\t年齡\t職位\t底薪\t獎金\t實際工資\n");printf("%s\t%s\t%c\t%d\t%s\t%d\t%d\t%d",p->id,p->name,p->sex,p->age,p->post,p->b_pay,p->reward,p->real_pay);printf("\n你想修改的是:\n");printf("\n1.序號");printf("\n2.姓名");printf("\n3.性別");printf("\n4.年齡");printf("\n5.職位");printf("\n6.底薪");printf("\n7.獎金");printf("\n8.實際工資");printf("\n請選擇(1-8):");scanf("%d",&choice);switch(choice){case1:printf("輸入修改后的序號:");getchar();gets(p->id);break;case2:printf("輸入修改后的姓名:");getchar();gets(p->name);break;case3:printf("輸入修改后的性別:");getchar();scanf("%c",&p->sex);break;case4:printf("輸入修改后的年齡:");scanf("%d",&p->age);break;case5:printf("輸入修改后的職位:");getchar();gets(p->post);break;case6:printf("輸入修改后的底薪:");scanf("%d",&p->b_pay);break;case7:printf("輸入修改后的獎金:");scanf("%d",&p->reward);break;case8:printf("輸入修改后的實際工資:");scanf("%d",&p->real_pay);break;}printf("您修改后的信息顯示:\n");printf("序號\t姓名\t性別\t年齡\t職位\t底薪\t獎金\t實際工資\n");printf("%s\t%s\t%c\t%d\t%s\t%d\t%d\t%d\n",p->id,p->name,p->sex,p->age,p->post,p->b_pay,p->reward,p->real_pay);break;}p=p->next;}if(p==NULL)printf("此人不存在.\n");printf("是否繼續(xù)修改?(Y/N)");getchar();flag=getchar();}while(flag=='Y'||flag=='y');}/*刪除員工信息模塊*/voiddelete(structnode*head1){charname[10];structnode*p,*q;p=head1;printf("--------------------------------------\n");printf("**************刪除員工信息************\n");printf("--------------------------------------\n");printf("輸入您要刪除的員工姓名:");getchar();gets(name);while(p!=NULL){q=p;p=p->next;if(strcmp(p->name,name)==0){q->next=p->next;printf("刪除的信息顯示:\n");printf("序號\t姓名\t性別\t年齡\t職位\t底薪\t獎金\t實際工資\n");printf("%s\t%s\t%c\t%d\t%s\t%d\t%d\t%d\n",p->id,p->name,p->sex,p->age,p->post,p->b_pay,p->reward,p->real_pay);free(p);save_file(head1);printf("已成功刪除.\n");break;}}if(p==NULL)printf("您輸入的姓名不存在.\n");}/*查詢員工信息模塊*/voidsearch(structnode*head1){intchoice;charflag;charname[10],ID[10];structnode*p;do{printf("**********查詢員工信息*********\n");printf("----------1.按姓名查詢.-------------------\n");printf("----------2.按序號查詢.-------------------\n");printf("請選擇(1-2):");scanf("%d",&choice);switch(choice){case1:printf("請輸入姓名:");getchar();gets(name);for(p=head1->next;p!=NULL;p=p->next){if(strcmp(name,p->name)==0){printf("\n序號\t姓名\t性別\t年齡\t職位\t底薪\t獎金\t實際工資\n");printf("%s\t%s\t%c\t%d\t%s\t%d\t%d\t%d\n",p->id,p->name,p->sex,p->age,p->post,p->b_pay,p->reward,p->real_pay);break;}}if(p==NULL)printf("您輸入的姓名不存在.");break;case2:printf("請輸入序號:");getchar();gets(ID);for(p=head1->next;p!=NULL;p=p->next){if(strcmp(ID,p->id)==0){printf("\n序號\t姓名\t性別\t年齡\t職位\t底薪\t獎金\t實際工資\n");printf("%s\t%s\t%c\t%d\t%s\t%d\t%d\t%d\n",p->id,p->name,p->sex,p->age,p->post,p->b_pay,p->reward,p->real_pay);break;}} if(p==NULL)printf("您輸入的序號不正確.\n");break;default:printf("輸入錯誤!\n");break;}printf("\n是否繼續(xù)查詢?(Y/N)");flag=getchar();}while(flag=='y'||flag=='Y');}/*員工排序模塊*/voidsort(structnode*head1){structnode*p,*q,*r,*t;charflag;intchoice,age,b_pay,reward,real_pay;charid[10],name[10],post[10];charsex;head1=read_file();printf("---------------------------------\n");printf("***********員工排序模塊**********\n");printf("---------------------------------\n");printf("***********1.按年齡排序.*********\n");printf("---------------------------------\n");printf("***********2.按序號排序.*********\n");printf("---------------------------------\n");printf("***********3.按實際工資排序.*****\n");printf("---------------------------------\n");printf("-----------請選擇(1-3):");scanf("%d",&choice);switch(choice){case1:for(r=head1;r!=NULL;r=r->next)for(p=head1;p->next->next!=NULL;p=p->next){if((p->next->age)>(p->next->next->age)){t=p->next->next;p->next->next=t->next;t->next=p->netx;p->next=t;}}break;case2:for(r=head1;r!=NULL;r=r->next)for(p=head1;p->next->next!=NULL;p=p->next){ if(strcmp(p->next->id,p->next->next->id)>0){t=p->next->next;p->next->next=t->next;t->next=p->next;p->next=t;}}break;case3:for(r=head1;r!=NULL;r=r->next)for(p=head1;p->next->next!=NULL;p=p->next){if((p->next->real_pay)>(p->next->next->real_pay)){t=p->next->next;p->next->next=t->next;t->next=p->next;p->next=t;}}break;}output(head1);}/*員工統(tǒng)計模塊*/voidrecord(structnode*head1){structnode*p;intchoice;inta,b,c;a=b=c=0;printf("---------------------------------------------\n");printf("|**************員工統(tǒng)計模塊*******************\n");printf("---------------------------------------------\n");printf("***************1.年齡統(tǒng)計*********************\n");printf("***************2.薪水統(tǒng)計*********************\n");printf("---------------請選擇(1-2)");scanf("%d",&choice);switch(choice){case1:for(p=head1->next;p->next!=NULL;p=p->next){if(p->age<30)a++;elseif(p->age>=30&&p->age<=40)b++;elsec++;}printf("30歲以下的員工人數(shù)是:%d\n",a);printf("30歲到40歲之間的員工人數(shù)是:%d\n",b);printf("40歲以上的員工人數(shù)是:%d",c);break;case2:for(p=head1->next;p->next!=NULL;p=p->next){if(p->real_pay<5000)a++;elseif(p->real_pay>=5000&&p->real_pay<=10000)b++;elsec++;}printf("薪水在5000元以下的員工人數(shù)是:%d\n",a);printf("薪水在5000到10000元之間的員工人數(shù)是:%d\n",b);printf("薪水在10000元以上的員工人數(shù)是:%d\n",c);break;default:printf("輸入錯誤!\n");break;}}welcome(){printf("\n--------------------------------------------\n");printf("**********歡迎使用員工信息管理系統(tǒng)**********\n");printf("--------------------------------------------\n");printf("--------------------------------------------\n");printf("************指導老師:王亞剛*****************\n");printf("--------------------------------------------\n");printf("****************作者:袁祝平*****************\n");printf("--------------------------------------------\n");}/*管理員界面*/fun1(){intchoice;charflag,choose;structnode*head1,*p;printf("\n您需要創(chuàng)建新鏈表嗎:\n");getchar();flag=getchar();if(flag=='Y'||flag=='y'){head1=creat_1();save_file(head1);head1=read_file();}elsehead1=read_file();do{printf("\n********歡迎進入員工管理系統(tǒng)***********\n");printf("\n1.輸出員工信息\n");printf("\n2.添加員工信息\n");printf("\n3.修改員工信息\n");printf("\n4.刪除員工信息\n");printf("\n5.查詢員工信息\n");printf("\n6.員工排序模塊\n");printf("\n7.統(tǒng)計員工信息\n");printf("\n0.退出系統(tǒng)\n");printf("請選擇(0-7):");scanf("%d",&choice);switch(choice){case1:output(head1);break;case2:add(head1);break;case3:change(head1);save_file(head1);break;case4:delete(head1);break;case5:search(head1);break;case6:do{sort(head1);printf("是否繼續(xù)排序?\n");getchar();flag=getchar();}while(flag=='Y'||flag=='y');break;case7:record(head1);break;case0:break;default:printf("輸入錯誤!\n");break;}}while(choice!=0);}/*普通用戶界面*/fun2(){intchoice;charflag;structnode*head1;head1=read_file();do{printf("\n-----------------------------------------\n");printf("**********歡迎進入員工管理系統(tǒng)***********\n");printf("-----------------------------------------\n");printf("\n1.輸出員工信息\n");printf("\n2.查詢員工信息\n");printf("\n3.員工排序模塊\n");printf("\n4.統(tǒng)計員工信息\n");printf("\n0.退出系統(tǒng)\n");printf("請選擇(0-4):");scanf("%d",&choice);switch(choice){case1:output(head1);break;case2:search(head1);break;case3:do{sort(head1);getchar();flag=getchar();}while(flag=='Y'||flag=='y');break;case4:record(head1);break;case0:break;default:printf("輸入錯誤!\n");break;}}while(choice!=0);}/*用戶登錄模塊*/login(structcode*head2){intchoice;charname[10],mima[10];structcode*p;printf("--------1.管理員--------\n");printf("--------2.普通用戶------\n");printf("--------請選擇:");scanf("%d",&choice);switch(choice){case1:printf("請輸入管理員的用戶名:");scanf("%s",name);if(strcmp(name,"yuan")==0){printf("請輸入密碼:");system("stty-echo");scanf("%s",mima);system("sttyecho");if(strcmp(mima,"zhuping")==0){fun1();/*調(diào)用管理員界面函數(shù)*/break;}elseprintf("\n密碼錯誤\n");}elseprintf("\n用戶名不存在\n");break;case2:printf("請輸入你的用戶名:");scanf("%s",name);for(p=head2->next;p!=NULL;p=p->next){if(strcmp(name,p->name)==0){printf("請輸入密碼:");system("stty-echo");scanf("%s",mima);system("sttyecho");if(strcmp(mima,p->mima)==0){fun2();/*調(diào)用用戶界面函數(shù)*/}elseprintf("\n密碼錯誤\n");break;}}if(p==NULL)printf("\n用戶名不存在\n");break;default:printf("輸入錯誤!\n");break;}}/*用戶注冊模塊*/sign(structcode*head2){structcode*p;charmima1[10],mima2[10];printf("---------------------------------------------\n");printf("****************歡迎注冊**********************\n");printf("---------------------------------------------\n");p=(structcode*)malloc(sizeof(structcode));printf("請注冊你的用戶名:\n");scanf("%s",p->name);printf("請輸入你的密碼:\n");system("stty-echo");scanf("%s",mima1);system("sttyecho");printf("請再次輸入你的密碼:\n");system("stty-echo");scanf("%s",mima2);system("sttyecho");if(strcmp(mima1,mima2)==0){strcpy(p->mima,mima1);p->next=head2->next;head2->next=p;printf("注冊成功\n");save_inf(head2);}elseprintf("兩次輸入密碼不一致.\n");}/*密碼修改模塊*/voidmodify(structcode*head2){structcode*p;cha

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論