




版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、活期儲(chǔ)蓄賬目管理一 目的滿足活期儲(chǔ)蓄處理中,儲(chǔ)戶開戶、銷戶、存入、支出活動(dòng)頻繁,系統(tǒng)設(shè)計(jì)要求。能比較迅速地找到儲(chǔ)戶的帳戶進(jìn)而顯示儲(chǔ)戶信息,以實(shí)現(xiàn)存款、取款記賬;能比較簡(jiǎn)單,迅速地實(shí)現(xiàn)插入和刪除,以實(shí)現(xiàn)開戶和銷戶的需要;熟練使用 C 語(yǔ)言編寫程序,解決實(shí)際問題;學(xué)會(huì)編制結(jié)構(gòu)清晰、風(fēng)格良好、數(shù)據(jù)結(jié)構(gòu)適當(dāng)?shù)腃語(yǔ)言程序,從而具備利用計(jì)算機(jī)編程分析解決綜合性實(shí)際問題的初步能力。二 需求分析1、數(shù)據(jù)需求1.需先進(jìn)行儲(chǔ)戶開戶才可進(jìn)行之后的所有的操作。2.開戶時(shí)需要的數(shù)據(jù)有姓名、身份證號(hào)碼、聯(lián)系電話、密碼、賬號(hào)會(huì)自動(dòng)生成。3.銷戶時(shí),需用輸入賬號(hào)與密碼(兩者都正確后)方可銷戶;存取款時(shí),也需進(jìn)行賬號(hào)及密碼驗(yàn)證
2、后方可進(jìn)行交易。2、基本功能需求基本的功能有新建儲(chǔ)戶(開戶)、刪除儲(chǔ)戶(銷戶)、存取款、查詢儲(chǔ)戶信息(此步也可看見交易后的信息)、顯示所有儲(chǔ)戶信息。3、 非功能性需求 系統(tǒng)以菜單界面方式工作,運(yùn)行界面友好,演示程序以用戶和計(jì)算機(jī)的對(duì)話方式進(jìn)行。三 概要設(shè)計(jì)1、數(shù)據(jù)結(jié)構(gòu)設(shè)計(jì)用結(jié)構(gòu)體來(lái)定義其數(shù)據(jù)類型,然后將數(shù)據(jù)按照該數(shù)據(jù)結(jié)構(gòu)存儲(chǔ),之后運(yùn)用文件的相關(guān)知識(shí)將更改的數(shù)據(jù)寫入文件中,采用數(shù)組類型的存儲(chǔ)結(jié)構(gòu)。2、儲(chǔ)存結(jié)構(gòu)體設(shè)計(jì)本系統(tǒng)主要用線性表表結(jié)構(gòu)類型來(lái)存儲(chǔ)在“活期儲(chǔ)蓄賬目管理系統(tǒng)”中的信息。其中,結(jié)構(gòu)體由5個(gè)分量構(gòu)成:用戶賬號(hào)、用戶姓名、用戶身份證號(hào)碼、用戶密碼、開戶金額。3、 模塊設(shè)計(jì)活期儲(chǔ)蓄賬目管理
3、顯示菜單選擇功能 1.新建儲(chǔ)戶 2.查詢儲(chǔ)戶信息3.顯示所有儲(chǔ)戶信息4.刪除儲(chǔ)戶5.存款 6.取款 7.退出賬目管理。void add()函數(shù)實(shí)現(xiàn)新建儲(chǔ)戶功能void select_id()函數(shù)實(shí)現(xiàn)查詢儲(chǔ)戶信息功能void display()函數(shù)實(shí)現(xiàn)顯示所有儲(chǔ)戶信息功能void del()函數(shù)實(shí)現(xiàn)刪除儲(chǔ)戶功能void save_money() 函數(shù)實(shí)現(xiàn)存款功能void get_money()函數(shù)實(shí)現(xiàn)取款功能void print()函數(shù)用于顯示菜單void main()函數(shù)用于實(shí)現(xiàn)菜單中的功能四 詳細(xì)設(shè)計(jì)1、結(jié)構(gòu)體的詳細(xì)定義struct user /用戶類型(賬號(hào),姓名,身份證號(hào),存款)int
4、id;char name20;char person_num19;char password6;double money;2、系統(tǒng)函數(shù)詳細(xì)介紹void add()函數(shù)實(shí)現(xiàn)新建儲(chǔ)戶功能void add() /添加用戶printf(%45sn,*新建儲(chǔ)戶*);printf(-nn);struct user getuser();struct user temp;int count(); /函數(shù)目的:計(jì)算文件中的記錄數(shù)目 以生成自動(dòng)賬號(hào)FILE *fp;int number;if(fp=fopen(file,ab)=NULL)printf(Can not open file!n);exit(1);te
5、mp=getuser(); /讀取用戶名number=count();temp.id=number+1; /生成自動(dòng)賬號(hào)fwrite(&temp,sizeof(struct user),1,fp);printf(添加用戶成功!n);fclose(fp);void select_id()函數(shù)實(shí)現(xiàn)查詢儲(chǔ)戶信息功能void select_id() /查詢儲(chǔ)戶信息int count();void getpassword(char *password);printf(%45sn,*查詢儲(chǔ)戶信息*);printf(-n);printf(%s %15s %15s %15sn,編號(hào),用戶姓名,身份證號(hào)碼,存款
6、余額);printf(-nn);FILE *fp;struct user temp;int i,maxnum;char password8;bool flag=false;if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);maxnum=count();printf(輸入要查詢賬號(hào):); scanf(%d,&i);if(imaxnum)printf(你要查詢的賬號(hào)不存在!);return;printf(輸入賬號(hào)密碼:);scanf(%s,&password);while(fread(&temp,sizeof(struct u
7、ser),1,fp) /循環(huán)讀取每一條記錄 判斷是否為要查看的記錄if(temp.id=i&strcmp(temp.password,password)=0)printf(NO.%d %8s %25s %.2fn,temp.id,,temp.person_num,temp.money);flag=true;break;if(flag=false) /判斷密碼是否正確printf(您輸入的密碼不正確!n);return;fclose(fp);void display()函數(shù)實(shí)現(xiàn)顯示所有儲(chǔ)戶信息功能void display() /顯示所有儲(chǔ)戶信息printf(%45sn,*顯示所
8、有儲(chǔ)戶信息*);printf(-n);printf(%s %15s %15s %15sn,賬號(hào),用戶姓名,身份證號(hào)碼,存款余額);printf(-n);FILE *fp;struct user temp;if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);while(fread(&temp,sizeof(struct user),1,fp)printf(NO.%d %10s %23s %.2fn,temp.id,,temp.person_num,temp.money);fclose(fp);void del
9、()函數(shù)實(shí)現(xiàn)刪除儲(chǔ)戶功能void del() /刪除儲(chǔ)戶printf(%45sn,*刪除儲(chǔ)戶*);printf(-n);printf(%s %15s %15s %10sn,賬號(hào),用戶姓名,身份證號(hào)碼,存款余額);printf(-n);int count();void getname(char *name);void getperson_num(char *person_num);void getpassword(char *password);FILE *fp;int i,num,mark;char password6;bool flag=false;struct user *temp;num
10、=count();/根據(jù)記錄數(shù)申請(qǐng)空間temp=(struct user *)malloc(num*sizeof(struct user);if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);for(i=0;inum;i+)/讀取文件內(nèi)容fread(&tempi,sizeof(struct user),1,fp);fclose(fp);printf(輸入要需要注銷的賬號(hào):);scanf(%d,&mark);if(inum)printf(你要注銷的賬號(hào)不存在!);return;printf(輸入賬號(hào)密碼: );scanf(%s
11、,&password);if(fp=fopen(file,wb)=NULL) /寫方式打開文件,覆蓋原文件中的內(nèi)容printf(cannot open file!n);exit(1);for(i=0;inum;i+) /無(wú)效賬戶信息全部置為0if(tempi.id=mark&strcmp(tempi.password,password)=0&tempi.money=0.00) strcpy(tempi.person_num,0);strcpy(,0);strcpy(tempi.password,0);flag=true;fwrite(&tempi,sizeof(struct
12、 user),1,fp);fclose(fp);free(temp);if(flag=false)printf(您輸入的密碼不正確或是余額不為零!n);elseprintf(儲(chǔ)戶注銷成功!n);void save_money() 函數(shù)實(shí)現(xiàn)存款功能void save_money() /函數(shù)功能:存款printf(%45sn,*用戶存款業(yè)務(wù)*);printf(-nn);int count();void getpassword(char *password);FILE *fp;int i,num,mark;bool flag=false;struct user *temp;char password
13、6;num=count(); temp=(struct user *)malloc(num*sizeof(struct user); /根據(jù)記錄數(shù)申請(qǐng)空間if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);for(i=0;inum;i+) /將文件內(nèi)容存入數(shù)組fread(&tempi,sizeof(struct user),1,fp);fclose(fp);printf(輸入要存款賬號(hào):); /讀取存款賬號(hào)scanf(%d,&mark);if(inum)printf(你要查詢的賬號(hào)不存在!);return;printf(輸入
14、賬號(hào)密碼: );scanf(%s,&password);if(fp=fopen(file,wb)=NULL) /寫方式打開文件,覆蓋原文件中的內(nèi)容printf(cannot open file!n);exit(1);for(i=0;inum;i+)if(tempi.id=mark&strcmp(tempi.password,password)=0)double money=0;printf(輸入要存入的金額:);scanf(%lf,&money);while(1)if(money=0)printf(只能為正數(shù)!n);money=0;printf(輸入要存入的金額:);scanf(%lf,&mo
15、ney);elsebreak;tempi.money +=money; flag=true;fwrite(&tempi,sizeof(struct user),1,fp); /修改該用戶的信息fclose(fp);free(temp);if(flag=false)printf(您輸入的密碼不正確!n);elseprintf(你存款業(yè)務(wù)已辦妥!n);void get_money()函數(shù)實(shí)現(xiàn)取款功能void get_money() /函數(shù)功能:用戶取款printf(%45sn,*用戶取款業(yè)務(wù)*);printf(-nn);int count();FILE *fp;int i,num,mark;cha
16、r password6;bool flag=false;struct user *temp;num=count();/根據(jù)記錄數(shù)申請(qǐng)空間temp=(struct user *)malloc(num*sizeof(struct user);if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);for(i=0;inum;i+)/讀取文件內(nèi)容fread(&tempi,sizeof(struct user),1,fp);fclose(fp);printf(輸入要取款賬號(hào):);scanf(%d,&mark);if(inum)printf
17、(你要查詢的賬號(hào)不存在!);return;printf(輸入賬號(hào)密碼: );scanf(%s,&password);if(fp=fopen(file,wb)=NULL) /寫方式打開文件,覆蓋原文件中的內(nèi)容printf(cannot open file!n);exit(1);for(i=0;inum;i+) if(tempi.id=mark&strcmp(tempi.password,password)=0) double money=0;printf(輸入要取出的金額:);scanf(%lf,&money);if(moneytempi.money)printf(你的余額不足!n);money
18、=0;tempi.money -=money;flag=true;fwrite(&tempi,sizeof(struct user),1,fp);fclose(fp);free(temp);if(flag=false)printf(您輸入的密碼不正確!n);elseprintf(你取款業(yè)務(wù)已辦妥!n);void print()函數(shù)用于顯示菜單void print()/函數(shù)功能:輸出界面printf(%48sn,*活期儲(chǔ)蓄帳目管理系統(tǒng)*);printf(-nn);printf(%8s,%-20sn,1,新建儲(chǔ)戶);printf(%8s,%-20sn,2,查詢儲(chǔ)戶信息);printf(%8s,%-
19、20sn,3,顯示所有儲(chǔ)戶信息);printf(%8s,%-20sn,4,刪除儲(chǔ)戶);printf(%8s,%-20sn,5,存款);printf(%8s,%-20sn,6,取款);printf(%8s,%-20sn,7,退出);printf(n請(qǐng)選擇功能(17):);void main()函數(shù)用于實(shí)現(xiàn)菜單中的功能,主函數(shù)void main()char choose;doprint();scanf( %c,&choose);/讀取功能標(biāo)號(hào),根據(jù)標(biāo)號(hào)選擇不同的函數(shù)fflush(stdin);system(cls);switch(choose)case 1:add();break;case 2:s
20、elect_id();break;case 3:display();break;case 4:del();break;case 5:save_money();break;case 6:get_money();break;case 7:exit(1);default:printf(對(duì)不起,你所選擇的功能不存在!n); getch();/暫停功能(讀取任意鍵繼續(xù))(conio.h) system(cls);/清除屏幕顯示(stdlib.h)while(1);五 調(diào)試分析 系統(tǒng)運(yùn)行主界面如圖所示,各子功能測(cè)試運(yùn)行結(jié)果如下: 每個(gè)方面實(shí)現(xiàn)一個(gè)功能。定義一個(gè)包含有五個(gè)變量的結(jié)構(gòu)體數(shù)組,并存入文件中。定義
21、一個(gè)計(jì)數(shù)函數(shù),貫穿整個(gè)程序。然后每個(gè)函數(shù)實(shí)現(xiàn)一個(gè)功能,共有六個(gè)功能。添加用戶時(shí)會(huì)使用到錄入姓名和錄入身份證號(hào)碼兩個(gè)函數(shù)。查詢只需要比較字符串,然后輸出即可實(shí)現(xiàn)。顯示全部?jī)?chǔ)戶信息只需將結(jié)構(gòu)體數(shù)組依次輸出即可實(shí)現(xiàn)。儲(chǔ)戶的存款和取款按找賬號(hào)依次從文件中查找到匹配的賬號(hào),然后加上或減去存取的金額即可實(shí)現(xiàn)。銷戶時(shí)將儲(chǔ)戶除賬號(hào)外信息全部置0即可。六 測(cè)試結(jié)果1.主界面截圖 2.新建儲(chǔ)戶 3.查詢儲(chǔ)戶信息 4.顯示所有儲(chǔ)戶信息 5.存款 6.取款 7.刪除儲(chǔ)戶七 用戶使用說(shuō)明 (1) 本程序執(zhí)行文件為”活期儲(chǔ)蓄.exe”. (2) 進(jìn)入本系統(tǒng)后,隨即顯示系統(tǒng)主菜單頁(yè)面,用戶可在該界面下輸入各子菜單前對(duì)應(yīng)的數(shù)
22、字并按回車鍵,執(zhí)行相應(yīng)子菜單命令。 (3) 賬號(hào)或密碼輸入不正確時(shí),會(huì)出現(xiàn)提示信息,然后按任意鍵退出。八 課程設(shè)計(jì)總結(jié)這次課程設(shè)計(jì)中遇到了一些問題與同學(xué)一起討論解決,從其他人身上學(xué)到了很多。 這個(gè)課程設(shè)計(jì)并不完美,還有很多要改善的地方,在刪除儲(chǔ)戶時(shí)不能將儲(chǔ)戶信息從文件中刪除,只能將儲(chǔ)戶信息全部置0了。還有一些沒想到的細(xì)節(jié)。雖然不是很完美,但發(fā)現(xiàn)不足之處并在以后的設(shè)計(jì)中注意這些細(xì)節(jié),對(duì)于將來(lái)的實(shí)踐還是很有幫助,我們可以不斷發(fā)現(xiàn)我們的不完美,并想辦法去改進(jìn)這些不完美。通過(guò)這次課程設(shè)計(jì)學(xué)到了很多東西包括以前在課本上沒有學(xué)到的知識(shí),還使我懂得了理論和時(shí)間結(jié)合是很重要的。讓我進(jìn)一步了解了C+程序設(shè)計(jì)方法
23、,并且對(duì)這門課產(chǎn)生了濃厚的興趣。更重要的是培養(yǎng)了自己耐心、細(xì)心、用心的良好品質(zhì)。同時(shí)也非常感謝同學(xué)的幫助及老師的建議與指導(dǎo)。源程序:#include#include#include#include#define file temp.txt /數(shù)據(jù)儲(chǔ)存文件名struct user /用戶類型(賬號(hào),姓名,身份證號(hào),存款)int id;char name20;char person_num19;char password6;double money;void add() /添加用戶printf(%45sn,*新建儲(chǔ)戶*);printf(-nn);struct user getuser();stru
24、ct user temp;int count(); /函數(shù)目的:計(jì)算文件中的記錄數(shù)目 以生成自動(dòng)賬號(hào)FILE *fp;int number;if(fp=fopen(file,ab)=NULL)printf(Can not open file!n);exit(1);temp=getuser(); /讀取用戶名number=count();temp.id=number+1; /生成自動(dòng)賬號(hào)fwrite(&temp,sizeof(struct user),1,fp);printf(添加用戶成功!n);fclose(fp);int count() /函數(shù)目的:計(jì)算文件中的記錄總數(shù)FILE *fp;in
25、t num;struct user temp;num=0;if(fp=fopen(file,rb)=NULL)printf(Can not open file!n);exit(1);while(fread(&temp,sizeof(struct user),1,fp)num+;fclose(fp);return num;struct user getuser()void getname(char *name);void getperson_num(char *person_num);void getpassword(char *password);struct user temp;printf
26、(請(qǐng)輸入用戶姓名(字符數(shù)=100)doscanf(%lf,&temp.money);fflush(stdin);if(temp.money100.00)printf(開戶金額不能小于100n);elsebreak;printf(重新輸入開戶金額: );while(1);return temp;void getname(char *name) /函數(shù)功能:讀取用戶姓名(字?jǐn)?shù)=20)printf(姓名不能超過(guò)20個(gè)字符!n);else break;printf(重新輸入姓名: ); /while循環(huán),直到姓名輸入有效while(1);void getperson_num(char *person_
27、num)doint i,mark;char ch;for(i=0,mark=0;i+)if(ch=getchar()!=n)if(ch=0)person_numi=ch;elseprintf(身份證號(hào)碼只能是數(shù)字!n);mark=1;break;elsebreak;person_numi=0;if(mark=1)continue;if(strlen(person_num)!=18)printf(身份證號(hào)碼只能是18位!n);elsebreak;printf(重新輸入身份證號(hào)碼: );while(1);void getpassword(char *password) do int i,j; ch
28、ar ch; for(i=0,j=0; i+) if(ch=getchar()!=n) if(ch=0) passwordi=ch; else printf(密碼只能是數(shù)字!n); j=1; break; else break; passwordi=0; if(j=1) continue; if(strlen(password)!=6) printf(密碼只能是6位!n); else break; printf(重新輸入密碼: ); while(1);void select_id() /查詢儲(chǔ)戶信息int count();void getpassword(char *password);pri
29、ntf(%45sn,*查詢儲(chǔ)戶信息*);printf(-n);printf(%s %15s %15s %15sn,編號(hào),用戶姓名,身份證號(hào)碼,存款余額);printf(-nn);FILE *fp;struct user temp;int i,maxnum;char password8;bool flag=false;if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);maxnum=count();printf(輸入要查詢賬號(hào):); scanf(%d,&i);if(imaxnum)printf(你要查詢的賬號(hào)不存在!);ret
30、urn;printf(輸入賬號(hào)密碼:);scanf(%s,&password);while(fread(&temp,sizeof(struct user),1,fp) /循環(huán)讀取每一條記錄 判斷是否為要查看的記錄if(temp.id=i&strcmp(temp.password,password)=0)printf(NO.%d %8s %25s %.2fn,temp.id,,temp.person_num,temp.money);flag=true;break;if(flag=false) /判斷密碼是否正確printf(您輸入的密碼不正確!n);return;fclose(
31、fp);void display() /顯示所有儲(chǔ)戶信息printf(%45sn,*顯示所有儲(chǔ)戶信息*);printf(-n);printf(%s %15s %15s %15sn,賬號(hào),用戶姓名,身份證號(hào)碼,存款余額);printf(-n);FILE *fp;struct user temp;if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);while(fread(&temp,sizeof(struct user),1,fp)printf(NO.%d %10s %23s %.2fn,temp.id,,te
32、mp.person_num,temp.money);fclose(fp);void save_money() /函數(shù)功能:存款printf(%45sn,*用戶存款業(yè)務(wù)*);printf(-nn);int count();void getpassword(char *password);FILE *fp;int i,num,mark;bool flag=false;struct user *temp;char password6;num=count(); temp=(struct user *)malloc(num*sizeof(struct user); /根據(jù)記錄數(shù)申請(qǐng)空間if(fp=fop
33、en(file,rb)=NULL)printf(cannot open file!n);exit(1);for(i=0;inum;i+) /將文件內(nèi)容存入數(shù)組fread(&tempi,sizeof(struct user),1,fp);fclose(fp);printf(輸入要存款賬號(hào):); /讀取存款賬號(hào)scanf(%d,&mark);if(inum)printf(你要查詢的賬號(hào)不存在!);return;printf(輸入賬號(hào)密碼: );scanf(%s,&password);if(fp=fopen(file,wb)=NULL) /寫方式打開文件,覆蓋原文件中的內(nèi)容printf(cannot
34、 open file!n);exit(1);for(i=0;inum;i+)if(tempi.id=mark&strcmp(tempi.password,password)=0)double money=0;printf(輸入要存入的金額:);scanf(%lf,&money);while(1)if(money=0)printf(只能為正數(shù)!n);money=0;printf(輸入要存入的金額:);scanf(%lf,&money);elsebreak;tempi.money +=money; flag=true;fwrite(&tempi,sizeof(struct user),1,fp);
35、 /修改該用戶的信息fclose(fp);free(temp);if(flag=false)printf(您輸入的密碼不正確!n);elseprintf(你存款業(yè)務(wù)已辦妥!n);void get_money() /函數(shù)功能:用戶取款printf(%45sn,*用戶取款業(yè)務(wù)*);printf(-nn);int count();FILE *fp;int i,num,mark;char password6;bool flag=false;struct user *temp;num=count();/根據(jù)記錄數(shù)申請(qǐng)空間temp=(struct user *)malloc(num*sizeof(stru
36、ct user);if(fp=fopen(file,rb)=NULL)printf(cannot open file!n);exit(1);for(i=0;inum;i+)/讀取文件內(nèi)容fread(&tempi,sizeof(struct user),1,fp);fclose(fp);printf(輸入要取款賬號(hào):);scanf(%d,&mark);if(inum)printf(你要查詢的賬號(hào)不存在!);return;printf(輸入賬號(hào)密碼: );scanf(%s,&password);if(fp=fopen(file,wb)=NULL) /寫方式打開文件,覆蓋原文件中的內(nèi)容printf(cannot ope
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年廣東科貿(mào)職業(yè)學(xué)院高職單招高職單招英語(yǔ)2016-2024歷年頻考點(diǎn)試題含答案解析
- 2025年廣東江門中醫(yī)藥職業(yè)學(xué)院高職單招高職單招英語(yǔ)2016-2024歷年頻考點(diǎn)試題含答案解析
- 2025年山東服裝職業(yè)學(xué)院高職單招語(yǔ)文2019-2024歷年真題考點(diǎn)試卷含答案解析
- 2025年山東中醫(yī)藥高等??茖W(xué)校高職單招高職單招英語(yǔ)2016-2024歷年頻考點(diǎn)試題含答案解析
- 2025年安徽體育運(yùn)動(dòng)職業(yè)技術(shù)學(xué)院高職單招高職單招英語(yǔ)2016-2024歷年頻考點(diǎn)試題含答案解析
- 2024年5月水壩閘門液壓系統(tǒng)同步拆除精度控制合同
- 自我介紹開場(chǎng)-展現(xiàn)你的精彩亮點(diǎn)
- CO的有關(guān)知識(shí)課件
- 新發(fā)展英語(yǔ)(第二版)綜合教程2 課件 Unit 9 Remembrances
- 石家莊經(jīng)濟(jì)職業(yè)學(xué)院《兒童歌曲演唱與指揮》2023-2024學(xué)年第一學(xué)期期末試卷
- GB/T 18655-2025車輛、船和內(nèi)燃機(jī)無(wú)線電騷擾特性用于保護(hù)車載接收機(jī)的限值和測(cè)量方法
- 吉林省吉林市2024-2025學(xué)年高三下學(xué)期3月三模試題 生物 含答案
- DZ∕T 0130-2006 地質(zhì)礦產(chǎn)實(shí)驗(yàn)室測(cè)試質(zhì)量管理規(guī)范(正式版)
- 《新疆大學(xué)版學(xué)術(shù)期刊目錄》(人文社科)
- 衛(wèi)生應(yīng)急響應(yīng)與處置
- 電子式交流電能表檢定原始記錄
- 最新整理【施耐德變頻器故障代碼】
- 供應(yīng)商審廠報(bào)告模板
- 門診特定病種待遇認(rèn)定申請(qǐng)表
- 文化遺產(chǎn)學(xué)概論:第七講 遺產(chǎn)的完整性問題
- 裝修項(xiàng)目技術(shù)標(biāo)(范本)
評(píng)論
0/150
提交評(píng)論