版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、咼級語言程序設(shè)計課程設(shè)計題目:多重模塊管理專業(yè)計算機班級1306班學(xué)生林道松學(xué)號3131903609指導(dǎo)教師鮑春波/肖琳起止時間 2014-2-17 2014-2-212014年2月目錄A組題目 1系統(tǒng)分析 30系統(tǒng)設(shè)計 31系統(tǒng)實現(xiàn) 32運行測試 33心得體會 36參考文獻 36A組題目題目i:寫一個函數(shù)計算下列函數(shù)的值3x3 -4>0”(工)=乜兀=007x<0解:#in clude<stdio.h>3兀亠-4zx> 0 l/(r) = htx=Of(0),f(3),f(-3)工W o ,測試之。函數(shù)如下:int mai n()int f(int n);int
2、 num result;prin tf("i nput the x :");scan f("%d",&n um); result=f( nu m);prin tf("the result is %dn "result);int f(int n) int s;if(n>0) s=3* n*n-4;if(n=0) s=2; if(*O) s=0;return s;評析:這是一個簡單的選擇判斷結(jié)構(gòu),只需將條件編寫清楚即可。題目2:寫一個函數(shù) void maxMinAver(int *data, int *max, int *m
3、in, float * ave ,int size),求一組數(shù)據(jù)的最大值、最小值和平均值,測試之。其中data指向給定數(shù)據(jù)的數(shù)組的指針, max min、ave分別指向最大值、最小值和平均值,size是數(shù)組的大小。要求第一個實參是數(shù)組,第2、3、4個實參都是對普通的簡單變量的某種操作,最后一個實參是數(shù)組的大小。測試之解:#i nclude<stdio.h>#i nclude<malloc.h>void maxMinAver(i nt *data,i nt *max, int *min float * ave,i nt size);int mai n()int n,i;i
4、nt max,mi n;float ave;int *data;prin tf("please en ter the n umbers:' n");sea nf("%d",&n);data=(i nt*)malloc( n*sizeof(i nt);for(i=0;i< n;i+)sea nf("%d", &datai);maxM in Aver(data,&max,&min,& ave ,n);prin tf("max:%dnmi n:%dnave:%.1fn"
5、;,max,mi n,ave);return 0;void maxMinAver(i nt *data,i nt *max, int *min ,float * ave,i nt size)int i,sum=0;*max=data0;*min=data0;for(i=0;i<size;i+)if(*max<=datai)*max=datai;if(*mi n>=datai)*min=datai;sum+=datai;*ave=(float)sum/size;評析:這是一個以指針為參數(shù)的函數(shù),用冒泡法對數(shù)組中的每一個數(shù)進行比較,這道題目的需要注意的地方就是在函數(shù)的調(diào)用需注意函
6、數(shù)實參,以及對數(shù)組內(nèi)存空間的申請。題目3:寫一個函數(shù) 用指針型字符串實現(xiàn)兩個字符串比較,int mystrcmp(c on st char *str1,const char *str2),如果大于返回1,等于返回0,小于返回-1,測試之解:#i nclude<stdio.h>int mystrcmp(c onst char *str1, const char *str2);int mai n()char str1100,str2100;sca nf("%s %s",str1,st ;prin tf("%dn",mystrcmp(str1,st
7、r2);return 0;int mystrcmp(c onst char *str1, const char *str2)int i;for(i=0;*(str1+i) != '0' && *(str2+i) !='0'i+)if(*(str1+i) > *(str2+i)return 1;if(*(str1+i) < *(str2+i)return -1;if(*(str1+i) =*(str2+i)return 0;評析:這道題的比較方法是將字母一一進行對比,利用指針將字母一個個進行比較, 需要注意的地方就是取*運算。題目4:定
8、義一個學(xué)生結(jié)構(gòu)體,取別名STU,包含學(xué)號、姓名、數(shù)學(xué)、語文、計算機、英語 等 課程成績,還有總分和平均分,寫一個函數(shù)實現(xiàn)求一組學(xué)生每個學(xué)生各門課程的平 均值,函數(shù)原型為 float ave(STU stu ,int size)。測試之。解:#i nclude<stdio.h>#in clude<stri ng.h>#define SIZE 2typedef struct stude ntint num;char n ame10;float math;float en glish;float computer;float chin ese;float total;floa
9、t average;STU;STU stuSIZE;float ave(STU stu,int size);int mai n()int i;prin tf("please in put the studet's in formati on:n");for(i=0;i<SIZE;i+)sea nf("%d %s %f %f %f %f", &stui. num,stui. name.&stui.math, &stui.e nglish, &puter, &stui.ch in ese)
10、;ave(stu,SIZE);for(i=0;i<SIZE;i+)prin tf(" nu m:%dn name:%snaverage:%.2fnn",stui. nu m,stui. name,stui.average);return 0;float ave(STU stu,int size)int i;for(i=0;i<size;i+)stui.total=stui.math+stui.e nglish+puter+stui.ch in ese;stui.average=stui.total/4;評析:這是一個用結(jié)構(gòu)體數(shù)組進行信息保存管理的
11、函數(shù),需要注意到的地方是在輸入信息與打印信息時要將注意結(jié)構(gòu)體數(shù)組的名稱題目5 :寫一個函數(shù)能夠從文件讀入一組學(xué)生STU的信息,保存到一個結(jié)構(gòu)體數(shù)組中。解:#i nclude<stdio.h>#i nclude<stdlib.h>#define SIZE 10struct stude nt_type char n ame 10;int num;int age;char addr15;studSIZE;void load();int mai n () load();return 0;void load() int i;FILE*fp;if(fp=fope n( "
12、stu.txt","門)=NULL) prin tf("ca nnot ope n filen");exit (0);for(i=0;i<SIZE;i+) fsca nf(fp,"%s %d %d %s", &studi. name,&studi. num,& studi.age, &studi.addr);prin tf("%-10s %4d %4d %-15sn",studi. name,studi. nu m,studi.age,studi.addr);fclose (f
13、p);評析:這是一個典型的從文件中輸入信息保存在數(shù)組中在屏幕上打印出。需要注意的打開文件所需要的頭文件以及數(shù)據(jù)輸入輸出的格式。題目6 :寫一個函數(shù)能夠輸出某一學(xué)生結(jié)構(gòu)體數(shù)組STU stu10的信息和每個人的總分、平均分到某一文本文件中,測試之。輸出格式是:“ %s %s %d %d %d %d %d %5.2f ”解:#i nclude<stdio.h>#i nclude<stdlib.h>#define SIZE 10struct stude nt_typechar n ame 10;char addr15;int grade;int num;int height;i
14、nt age;int score;float ave;stuSIZE;void output();int mai n ()output();return 0;void output()int i;FILE*fp;fp=fope n("pri ntf.txt","w");for(i=0;i<SIZE;i+) scan f("%s %s %d %d %d %d %d %f',stui. name,stui.addr, &stui.grade,& stui. num,&stui.height,& stui
15、.age, &stui.score,& stui.ave);fprin tf(fp,"%s %s %d %d %d %d %d %5.2fn",stui. name,stui.addr,stui.grade,stui. num, stui.height,stui.age,stui.score,stui.ave);評析:注意文件的輸入及輸出格式即可。題目7:寫一個函數(shù)能夠打印輸出學(xué)生結(jié)構(gòu)體數(shù)組STU stu10的信息到屏幕上,測試之解:#i nclude<stdio.h>#define SIZE 10struct stude ntint num;c
16、har n ame10;float score;stuSIZE;void prin t(struct stude nt stu,i nt size);int mai n () int n;for(n=0; n< SIZE; n+)scan f("%d %s %f", &stu n.n um,stu n. name, &stu n.score);prin t(stu,SIZE);return 0;void prin t(struct stude nt stu,i nt size)int i;for(i=0;i<size;i+)printf(&quo
17、t;nu m:%dnn ame:%snscore:%.2fnn ”,stui. nu m,stui. name,stui.score);評析:注意函數(shù)的調(diào)用和輸入和輸出的格式。題目8寫一個函數(shù)能夠把一組學(xué)生成績信息按總分進行排序,測試之。解:#i nclude<stdio.h>#define SIZE 2struct stude ntint num;char n ame10;float score;STUSIZE;void comp(struct stude nt stu);int mai n()int n;for(n=0; n< SIZE; n+)scan f("
18、%d %s %f",&STU n.n um,STU n. name,&STU n.score);prin tf("The Order Is:n");comp(STU);for(n=0; n< SIZE; n+)prin tf("%6d%10s%8.1fn",STU n. nu m,STU n.n ame,STU n.score);return 0;void comp(struct stude nt stu)int i,j,k,m;for(i=0;i<SIZE-1;i+)k=i;for(j=i+1;j<SIZE;
19、j+)if(STUj.score>STUk.score)k=j;m=STUk.score;STUk.score=STUi.score;STUi.score=m;評析:應(yīng)用選擇法對學(xué)生信息進行比較,注意結(jié)構(gòu)體數(shù)組信息的格式。題目9 :寫一個函數(shù)能夠查找給定學(xué)號的學(xué)生成績信息,如果找到打印成績信息,如果沒有,顯示"not found! ” .測試之。解:#in clude<stdio.h> struct stude ntint num;char n ame15;int chin ese;int math;int en glish;void searchscore(str
20、uct stude nt stu);int mai n()struct stude ntstu5=10110,"zha ng",70,80,90,10111,"li n" ,90,80,90,10086,"zhao",70,80,90,10010,"zha ng",70,70,70,10120,"che n",80,80,905searchscore(stu);return 0;void searchscore(struct stude nt stu)int n,m,nu mber=0;prin
21、 tf("e nter the nu mber you wan t:n");scan f("%d",&m);prin tf("The Result Is:n ”);for(n=0;n<5;n+)if(m=stu n. num)printf("nu m:%dnn ame:%snchin ese:%dnm ath:%dnen glish:%dn",stu n . nu m,st un . name,stu n.chi nese,stu n.math,stu n.e nglish);nu mber=1; if(nu
22、mber=0)prin tf(" not fou nd!n");評析;這是一個信息搜索程序,學(xué)生的信息可以是事先定義,也可以采用用戶輸 入形式。題目10 :設(shè)計一個界面函數(shù),包含上述11個題目的調(diào)用,即請選擇1 調(diào)用第一個函數(shù)(具體的函數(shù)名)2 調(diào)用第二個函數(shù)(具體的函數(shù)名)3 .9 調(diào)用第9個函數(shù)(具體的函數(shù)名)n結(jié)束繼續(xù)嗎?輸入y繼續(xù)下一次選擇,輸入解:#in clude<stdio.h>#in clude<stri ng.h>#in clude<malloc.h>#define SIZE 10int f();void maxMi n
23、Aver();int mystrcmp();float ave();typedef struct stude ntint num;char n ame10;float math;float en glish;float computer;float chin ese;float total;float average;STU;STU stuSIZE;void load();struct stude nt_type char n ame 10;int num;int age;char addr15;studSIZE;void output();struct Stude nt_typechar n
24、 ame 10;char addr15;int grade;int num;int height;int age;int score;float ave;StuSIZE;void prin t();struct sTude ntint num;char n ame10;float score;sTuSIZE;void comp();struct stude nTint num;char n ame10;float score;StUSIZE;void searchscore();struct stuDe ntint num;char n ame15;int chin ese;int math;
25、int en glish;int sw(i nt m);void menu();int mai n()int nu m1, nu m2;char str;men u();scan f("%d",&n um1);sw( nu m1);getchar();scan f("%c", &str);while (str='N'|str=' n'&&str='Y'|str='y') if(str='y')sca nf("%d",&
26、;nu m2);sw(nu m2);if(str=' n')break;getchar();scan f("%c", &str);return 0;int sw(i nt m) int x,n ,i,max,mi n;char str1100,str2100;float kave;int *data;struct stuDe ntstuD5=10110,"zha ng",70,80,90,10111,"li n",90,80,90,10086,"zhao",70,80,90,10010,&q
27、uot;zha ng",70,70,70,10120,"che n",80,80,90; switch(m)case 1:sca nf("%d", &x);prin tf("%dn",f(x);break;case 2:sca nf("%d",&n);data=(i nt*)malloc( n*sizeof( in t);for(i=0;i <n ;i+)scan f("%d", &datai);maxMi nAver(data,&max, &am
28、p;min,&kave, n);prin tf("max:%dnmi n: %dnave:%.1fn",max,mi n,kave);break;case 3:sca nf("%s %s",str1,str2);prin tf("%dn",mystrcmp(str1,str2);break;case 4:for(i=0;i<SIZE;i+)scan f("%d %s %f %f %f %f", &stui. nu m,stui. name,&stui.math, &stui.e
29、 nglish, &puter, &stui.ch in ese);ave(stu,SIZE);for(i=0;i<SIZE;i+)prin tf(" nu m:%dn name:%snaverage:%.2fnn",stui. nu m,stui. name,stui.average);break;case 5:load();break;case 6:output();break;case 7:for( n=0;n< SIZE ;n+)scan f("%d %s %f", &sTu n.n um,sT
30、u n. name, &sTu n.score); prin t(sTu,SIZE);break;case 8:for( n=0; n< SIZE; n+)scan f("%d %s %f", &StU n.n um,StU n. name,&StU n.score);prin tf("The Order Is:n");comp(StU);for(n=0; n< SIZE; n+)prin tf("%6d%10s%8.1fn",StU n. num,StU n. name,StU n.score);
31、break;case 9:searchscore(stuD);break;prin tf("n ”);繼續(xù)嗎? n");printf("void menu()prin tf("| *prin tf("|l|n");請選擇你所需要的函數(shù)|n");ll'n");prin tf("| *prin tf("|prin tf("|prin tf("|prin tf("|prin tf("|prin tf("|prin tf("|prin
32、tf("|prin tf("|prin tf("|prin tf("|printf("..9.求分段函數(shù)的值f(x)求一組數(shù)據(jù)的最大值和最小值以及平均值 比較兩個字符串大小|n");求一組學(xué)生每個學(xué)生各門課程的平均值 從文件讀入一組學(xué)生的信息|n");輸出結(jié)構(gòu)體數(shù)組的信息到文本文件中 打印輸出學(xué)生結(jié)構(gòu)體數(shù)組的信息到屏幕上 把一組學(xué)生成績信息按總分進行排序 查找給定學(xué)號的學(xué)生成績信息|n");*l|n");l|n");l|n");l|n"); l|n
33、");l|n"); l|n");*|nn")請輸入所調(diào)用函數(shù)序號:n");int f(int n) int s;if(n>0) s=3*n*n-4;if(n=0) s=2; if(n<0) s=0; return s;void maxMi nAver(i nt *data,i nt *max, int *min, float * ave,i nt size) int i,sum=0;*max=data0;*mi n=data0;for(i=0;i<size;i+)if(*max<=datai)*max=datai;if(
34、*mi n>=datai)*mi n=datai;sum+=datai;*ave=(float)sum/size;int mystrcmp(c onst char *str1, const char *str2)int i;for(i=0;*(str1+i) != '0' && *(str2+i) !='0'i+)if(*(str1+i) > *(str2+i)return 1;if(*(str1+i) < *(str2+i)return -1;if(*(str1+i) =*(str2+i) return 0;float ave
35、(STU stu,int size)int i;for(i=0;i<size;i+)stui.total=stui.math+stui.e nglish+puter+stui.ch in ese;stui.average=stui.total/4;void load() int i;FILE*fp;if(fp=fope n( "stu.txt","r")=NULL) prin tf("ca nnot ope n filen");exit (0);for(i=0;i<SIZE;i+) fsca nf(fp,&
36、quot;%s %d %d %s", &studi. name,&studi. num,& studi.age, &studi.addr);printf(%10s %4d %4d %-15sn",,studi. nu m,studi.age,studi.addr);fclose (fp);void output()int i;FILE*fp;fp=fope n("PRINT.txt","w");for(i=0;i<SIZE;i+) scan f("%s %s %d %
37、d %d %d %d %f",Stui. name,Stui.addr,&Stui.grade,&Stui. num,& Stui.height,& Stui.age, &Stui.score, &Stui.ave);/fpri ntf(fp," nameaddr grade num height age scoreaven");fprin tf(fp,"%s %s %d %d %d %d %d %5.2fn",Stui. name,Stui.addr,Stui.grade,Stui. num,
38、Stui.height,Stui.age,Stui.score,Stui.ave);void prin t(struct sTude nt sTu,i nt size)int i;for(i=0;i<size;i+)printf("nu m:%dnn ame:%snscore:%.2fnn ”,sTui. nu m,sTui. name,sTui.sco re);void comp(struct stude nT stu)int i,j,k,m;for(i=0;i<SIZE-1;i+)k=i;for(j=i+1;j<SIZE;j+)if(StUj.score>
39、StUk.score)k=j;m=StUk.score;StUk.score=StUi.score;StUi.score=m;void searchscore(struct stuDe nt stu)int n,m,nu mber=0;prin tf("e nter the nu mber you wan t:n");scan f("%d",&m);prin tf("The Result Is:n ”);for(n=0;n<5;n+)if(m=stu n. num)printf("nu m:%dnn ame:%snchi
40、 nese:%dnm ath:%dnen glish:%dn",stu n . nu m,stu n . name,stu n.chi nese,stu n.math,stu n.e nglish);nu mber=1; if(nu mber=0) prin tf(" not fou nd!n");評析:這是一個大型數(shù)據(jù)系統(tǒng),將以上 9個函數(shù)集結(jié)成一個大型數(shù)據(jù),制作了精 美的封面,主要用途與前9個題目相似,需要注意變量名與結(jié)構(gòu)體數(shù)組名不能重復(fù)定義,系統(tǒng)結(jié)構(gòu)要清晰。題目11 :創(chuàng)建一個工程文件,包含三個文件,第一個是主函數(shù)所在的源文件,含有顯示界面,選擇1-10,調(diào)
41、用不同的函數(shù),第二個是各個函數(shù)所在的源文件,第三個是各 個函數(shù)原型所在的頭文件。解:1.arra ngemai n.c#in clude<stdio.h>#in clude<stri ng.h>#in clude<malloc.h>#define SIZE 10#in clude"arra nge.h"int mai n()int nu ml, nu m2;char str;menu();scan f("%d", &n um1);sw( nu m1);getchar();scan f("%c"
42、;, &str);while (str='N'|str=' n'&&str='Y'|str='y') if(str='y')sca nf("%d",&n um2);sw(nu m2);if(str=' n')break;getchar();scan f("%c", &str);return 0;2.Arra nge.c #in clude<stdio.h>#in clude<stri ng.h>
43、#in clude<malloc.h>#define SIZE 10 typedef struct stude ntint num;char n ame10;float math;float en glish;float computer;float chin ese;float total;float average;STU;STU stuSIZE;struct stude nt_type char n ame 10;int num;int age;char addr15;studSIZE;struct Stude nt_typechar n ame 10;char addr15
44、;int grade;int num;int height;int age;int score;float ave;StuSIZE;struct sTude ntint num;char n ame10;float score;sTuSIZE;struct stude nTint num;char n ame10;float score;StUSIZE;struct stuDe ntint num;char n ame15;int chin ese;int math;int en glish;int sw(i nt m) int x,n ,i,max,mi n;char str1100,str
45、2100;float kave;int *data;struct stuDe ntstuD5=10110,"zha ng",70,80,90,10111,"li n",90,80,90,10086,"zhao",70,80,90,10010,"zha ng",70,70,70,10120,"che n",80,80,9 0;switch(m)case 1:sca nf("%d", &x);prin tf("%dn",f(x);break;case
46、2:sca nf("%d", &n);data=(i nt*)malloc( n*sizeof( in t);for(i=0;i< n;i+)scan f("%d", &datai);maxMi nAver(data,&max,&mi n,& kave, n);prin tf("max:%dnmi n:%dnave:%.1fn",max,mi n,kave);break;case 3:sca nf("%s %s",str1,str2);prin tf("%dn
47、",mystrcmp(str1,str2);break;case 4:for(i=0;i<SIZE;i+)scan f("%d %s %f %f %f %f", &stui. nu m,stui. name,&stui.math,& stui.e nglish, &puter, &stui.ch in ese);ave(stu,SIZE);for(i=0;i<SIZE;i+)prin tf(" nu m:%dn name:%snaverage:%.2fnn",stui. nu
48、m,stui. name,stui.average);break;case 5:load();break;case 6:output();break;case 7:for( n=O;n< SIZE ;n+)scan f("%d %s %f", &sTu n.nu m,sTu n. name, &sTu n.score);prin t(sTu,SIZE);break;case 8:for( n=0; * SIZE; n+)scan f("%d %s %f",&StU n.nu m,StU n. name, &StU n
49、.score);prin tf("The Order ls:n"); comp(StU);for(n=0; n< SIZE; n+)prin tf("%6d%10s%8.1fn",StU n.n um,StU n. name,StU n.score);break;case 9:searchscore(stuD);break; prin tf("n");printf("繼續(xù)嗎? n");void menu()prin tf("|*|n");prin tf("| |n");
50、請選擇你所需要的函數(shù)prin tf("|1.求分段函數(shù)的值f(x)|n");prin tf("|2.求一組數(shù)據(jù)的最大值和最小值以及平均值|n");prin tf("|3.比較兩個字符串大小|n");prin tf("|4.求一組學(xué)生每個學(xué)生各門課程的平均值|n");prin tf("|5.從文件讀入一組學(xué)生的信息prin tf("|n");|n");*prin tf("|6.輸出結(jié)構(gòu)體數(shù)組的信息到文本文件中|n");prin tf("|7.打印輸
51、出學(xué)生結(jié)構(gòu)體數(shù)組的信息到屏幕上|n");prin tf("|8.把一組學(xué)生成績信息按總分進行排序|n");prin tf("|9.查找給定學(xué)號的學(xué)生成績信息|n");ll'n");prin tf("|*|nn");*prin tf("請輸入所調(diào)用函數(shù)序號:n");int f(int n) int s;if(n>0) s=3*n*n-4;if(n=0) s=2;if(*O) s=0;return s;void maxMinAver(int *data,int *max, int *m
52、in,float * ave,int size)int i,sum=0;*max=dataO;*mi n=dataO;for(i=0;i<size;i+)if(*max<=datai) *max=datai;if(*mi n>=datai)*mi n=datai;sum+=datai;*ave=(float)sum/size;int mystrcmp(c onst char *str1, const char *str2) int i;for(i=0;*(str1+i) != '0' && *(str2+i) !='0'i+)i
53、f(*(str1+i) > *(str2+i)return 1;if(*(str1+i) < *(str2+i)return -1;if(*(str1+i) =*(str2+i)return 0;void ave(STU stu,i nt size)int i;for(i=0;i<size;i+)stui.total=stui.math+stui.e nglish+puter+stui.ch in ese5stui.average=stui.total/4; void load() int i;FILE*fp;if(fp=fope n("stu.tx
54、t","r")=NULL) prin tf("ca nnot ope n filen");exit (0); fscan f(fp,"%s %d %d %s", &studi. name,&studi. num,& studi.age,& studi.addr);printf("%-10s %4d %4d %-15sn",,studi. nu m,studi.age,studi.addr);fclose (fp);void output()int i;F
55、ILE*fp;fp=fope n( "PRINT.txt","w");for(i=0;i<SIZE;i+) scan f("%s %s %d %d %d %d %d %f",Stui. name,Stui.addr, &Stui.grade, &Stui. num,& Stui.height,&Stui.age, &Stui.score,&Stui.ave);/fprin tf(fp," nameaddr gradenum height age scoreaven");fprin tf(fp,"%s %s %d %d %d %d %d %5.2fn",Stui. name,Stui.addr,Stui.grade,Stui. num, Stui.height,Stui.age,Stui.score,Stui.ave);void prin t(struct sTude nt sTu,i nt size)int i;for(i=0;i<size;i+)printf("nu m:%dnn ame:%snscore%2fnn ”,sTui. nu m,sTui. name,sTui .score);void comp(s
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年度文化創(chuàng)意產(chǎn)品采購合同變更及版權(quán)協(xié)議3篇
- 二零二五版美團騎手薪酬福利及晉升體系合同2篇
- 課題申報參考:南嶺走廊儺戲服飾文化基因解碼及傳承路徑研究
- 課題申報參考:慢波睡眠期間無意識序列學(xué)習(xí)的神經(jīng)機制及認知調(diào)控
- 2025年度虛擬現(xiàn)實游戲開發(fā)與授權(quán)合同范本4篇
- 2025年度個人旅游居間代理合同樣本2篇
- 南京市2025年度二手房購房合同(含環(huán)保檢測報告)4篇
- 2025年度個人租賃城市中心公寓及家電配置合同3篇
- 2025版南寧高新區(qū)廠房租賃合同及技術(shù)支持服務(wù)協(xié)議4篇
- 2025年度個人小額信用貸款合同范本7篇
- 綠化養(yǎng)護難點要點分析及技術(shù)措施
- 2024年河北省高考歷史試卷(含答案解析)
- 車位款抵扣工程款合同
- 2023年湖北省襄陽市中考數(shù)學(xué)真題(原卷版)
- 小學(xué)六年級數(shù)學(xué)奧數(shù)題100題附答案(完整版)
- 湖南高速鐵路職業(yè)技術(shù)學(xué)院單招職業(yè)技能測試參考試題庫(含答案)
- 英漢互譯單詞練習(xí)打印紙
- 2023湖北武漢華中科技大學(xué)招聘實驗技術(shù)人員24人筆試參考題庫(共500題)答案詳解版
- 一氯二氟甲烷安全技術(shù)說明書MSDS
- 母嬰護理員題庫
- SWITCH暗黑破壞神3超級金手指修改 版本號:2.7.6.90885
評論
0/150
提交評論