




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、# include<stdio.h> # include "stdlib.h" # include "string.h"#include <iostream.h>struct student *Read();void save(struct student *head);void sinput(struct student *p);struct student *input();void paixu_num(struct student *head);struct student *insert();struct student
2、*alter();struct student *del();void find_num(struct student *phead);void find_name(struct student *phead);void output();void min_student(struct student *phead);void max_student(struct student *phead);void ave_student(struct student *phead);void every_student(struct student *phead);void score_paixu(s
3、truct student *head);void help();void tj_menu(struct student *head);1 / 41void find_menu(struct student *head);void menu();struct student/定義學生信息結構數(shù)組,用于學生信息輸入 char number13;char name13;char sex4;char adds15;char phone14; char qq14;float chinese,math,english,txhp,pinde,teacher;int zcmc,ksmc;double ave
4、,zc;struct student *next;#define Len sizeof(struct student)int len; /鏈表長度int a=0,b=0,c=0,d=0,e=0;/用來存放成績各階的人數(shù)char stu10;struct student *Read() /讀取數(shù)據(jù)文件保存到鏈表中,返回指向此鏈表頭指針struct student *head=NULL;struct student *p1, *p2;FILE *fp;cout<<"請輸入你要打開的文件(.dat)"<<endl;cin>>stu;if(fp=
5、fopen(stu,"rb+")=NULL)cout<<"打開文件出錯!"<<endl;exit(0);while(!feof(fp) if( (p1=(struct student*)malloc(Len)=NULL )cout<<"內存申請出錯"<<endl;fclose(fp);exit(0);if(fread(p1,Len,1,fp)!=1)free(p1);break;if(head=NULL)head=p2=p1;elsep2->next=p1;p2=p1;fclose
6、(fp);return head;void save(struct student *head)/數(shù)據(jù)存盤FILE *fp;struct student *p;p=head;cout<<"請輸入你要存進去的文件(.dat)"<<endl;cin>>stu;if(fp = fopen(stu, "wb")=NULL)cout<<"無法打開文件!"<<endl;system("pause");menu();while(p) if(fwrite(p,Len,1,
7、fp)!=1)cout<<"寫入數(shù)據(jù)出錯"<<endl;fclose(fp);return;elsep=p->next;cout<<"數(shù)據(jù)存入成功!請按任意鍵繼續(xù)!"<<endl;getchar();fclose(fp);/單次輸入void sinput(struct student *p)cout<<"請輸入學號:"<<endl;cin>>p->number;cout<<"請輸入姓名: "<<e
8、ndl;cin>>p->name;cout<<"請輸入性別: "<<endl;cin>>p->sex;cout<<"請輸入家庭住址: "<<endl;cin>>p->adds;cout<<"請輸入聯(lián)系電話: "<<endl;cin>>p->phone;cout<<"請輸入qq: "<<endl;cin>>p->qq;cout<
9、<"請輸入語文成績:"<<endl;cin>>p->chinese;if(p->chinese>100|p->chinese<0)cout<<"成績輸入不符合規(guī)定,請重新輸入:"<<endl;cin>>p->chinese;cout<<"請輸入數(shù)學成績:"<<endl;cin>>p->math;if(p->math>100|p->math<0)cout<<&
10、quot;成績輸入不符合規(guī)定,請重新輸入:"<<endl;cin>>p->math;cout<<"請輸入英語成績:"<<endl;cin>>p->english;if(p->english>100|p->english<0)cout<<"成績輸入不符合規(guī)定,請重新輸入:"<<endl;cin>>p->english;cout<<"請輸入同學互評分:"<<endl;c
11、in>>p->txhp;if(p->txhp>100|p->txhp<0)cout<<"成績輸入不符合規(guī)定,請重新輸入:"<<endl;cin>>p->txhp;cout<<"請輸入品德成績:"<<endl;cin>>p->pinde;if(p->pinde>100|p->pinde<0)cout<<"成績輸入不符合規(guī)定,請重新輸入:"<<endl;cin>
12、>p->pinde;cout<<"請輸入任課教師評分:"<<endl;cin>>p->teacher;if(p->teacher>100|p->teacher<0)cout<<"成績輸入不符合規(guī)定,請重新輸入:"<<endl;cin>>p->teacher;p->ave=(p->chinese+p->math+p->english)/3.0;p->zc=(p->ave*0.6+p->txhp*0
13、.1+p->pinde*0.2+p->teacher*0.1);cout<<endl;cout<<""<<endl;cout<<"你剛輸入的信息為:"<<endl;cout<<"tt學號:"<<p->number<<endl;cout<<"tt姓名:"<<p->name<<endl;cout<<"tt性別:"<<p-&
14、gt;sex<<endl;cout<<"tt家庭住址:"<<p->adds<<endl;cout<<"tt聯(lián)系電話:"<<p->phone<<endl;cout<<"ttQQ號:"<<p->qq<<endl;cout<<"tt語文成績:"<<p->chinese<<endl;cout<<"tt數(shù)學成績:"&
15、lt;<p->math<<endl;cout<<"tt英語成績:"<<p->english<<endl;cout<<"tt品德成績:"<<p->pinde<<endl;cout<<"tt教師評分:"<<p->teacher<<endl;cout<<""<<endl;return;/學生成績錄入函數(shù)struct student *input()s
16、truct student *head=NULL,*p1,*p2;/輸入p1,p2鏈表最后節(jié)點char ch='y'len=1; p2=p1=(struct student *)malloc(sizeof(struct student);cout<<"請輸入第"<<len<<"個學生的信息:"<<endl;sinput(p1);cout<<endl;cout<<"按n退出或按任意鍵繼續(xù)"<<endl;cin>>ch;whil
17、e(1)if(len=1)/作為頭結點 head=p1;else p2->next=p1;p2=p1;if(ch='N'|ch='n')break;p1=(struct student *)malloc(sizeof(struct student);system("cls");len+;cout<<"請輸入第"<<len<<"個學生的信息:"<<endl;sinput(p1);cout<<endl;cout<<"按n
18、退出或按任意鍵繼續(xù)"<<endl;cin>>ch;p2->next=NULL;paixu_num(head);cout<<"輸入學生信息完成!請按任意鍵返回主菜單!"<<endl;getchar();return head;/學號排序void paixu_num(struct student *head) struct student t,*r,*p,*q;/t交換p、q,r頭結點 r=head; if(r=NULL) cout<<"學生信息不存在,請先輸入學生信息!"<&
19、lt;endl; return; while(r) p=r; q=r->next;while(q) if(strcmp(q->number,p->number)<0) /q<p strcpy(t.number,q->number);strcpy(,q->name); strcpy(t.sex,q->sex); strcpy(t.adds,q->adds); strcpy(t.phone,q->phone); strcpy(t.qq,q->qq); t.chinese=q->chinese; t.math=q-&
20、gt;math; t.english=q->english; t.txhp=q->txhp; t.pinde=q->pinde; t.teacher=q->teacher;strcpy(q->number,p->number);strcpy(q->name,p->name); strcpy(q->sex,p->sex); strcpy(q->adds,p->adds); strcpy(q->phone,p->phone); strcpy(q->qq,p->qq); q->chinese=p-&
21、gt;chinese; q->math=p->math; q->english=p->english; q->txhp=p->txhp; q->pinde=p->pinde; q->teacher=p->teacher;strcpy(p->number,t.number);strcpy(p->name,); strcpy(p->sex,t.sex); strcpy(p->adds,t.adds); strcpy(p->phone,t.phone); strcpy(p->qq,t.qq);
22、 p->chinese=t.chinese; p->math=t.math; p->english=t.english; p->txhp=t.txhp; p->pinde=t.pinde; p->teacher=t.teacher; q=q->next; r=r->next; /插入函數(shù)struct student *insert()struct student *p,*p1,*head;head=Read();p1=head;p=(struct student *)malloc(sizeof(struct student);char num14
23、,ch;cout<<"請輸入你要插入的前一個學生的學號:"<<endl;cin>>num;while(p1)if(!strcmp(p1->number,num)sinput(p);p->next=p1->next;p1->next=p;len+;elsep1=p1->next;cout<<"按n退出或按任意鍵繼續(xù)"<<endl; cin>>ch;if(ch='N'|ch='n')break;cout<<&quo
24、t;學生信息插入成功!請按任意鍵返回!"<<endl;getchar();return head;/修改學生信息struct student *alter()char temp13; struct student *p,*head;head=Read();p=head;cout<<"請輸入要修改學生的學號:"cin>>temp;while(p)if(!strcmp(p->number,temp)sinput(p);p=p->next;cout<<endl;cout<<"學生信息修改成
25、功!請按任意鍵返回!"<<endl;cout<<endl;system("pause");return head;/刪除學生信息struct student *del() char temp13;int m=0;struct student *p1,*p,*head;/p1刪除head=Read();p1=p=head;cout<<"請輸入你要刪除學生的學號:"<<endl;cin>>temp;while(p)if(strcmp(p1->number,temp)=0)if(p1=
26、head)/刪除的頭結點head=p1->next;else p->next=p1->next;len-;m=1;cout<<"學生信息刪除成功!請按任意鍵返回主菜單."<<endl;getchar();return head; else p=p->next;if(!m)cout<<"查找不到這個信息!"<<endl;return head;void find_num(struct student *head)/按學號查找 struct student *p=head;char te
27、mp9;int m = 0;cout<<"請輸入要查找的學生的學號"<<endl;cin>>temp;while(p!=NULL) if(strcmp(p->number,temp) = 0) cout<<"該學生的具體信息為:"<<endl;cout<<endl;cout<<""<<endl;cout<<"tt學號:"<<p->number<<endl;cout<&
28、lt;"tt姓名:"<<p->name<<endl;cout<<"tt性別:"<<p->sex<<endl;cout<<"tt家庭住址:"<<p->adds<<endl;cout<<"tt聯(lián)系電話:"<<p->phone<<endl;cout<<"ttQQ號:"<<p->qq<<endl;cout&l
29、t;<"tt語文成績:"<<p->chinese<<endl;cout<<"tt數(shù)學成績"<<p->math<<endl;cout<<"tt英語成績"<<p->english<<endl;cout<<"tt平均成績"<<p->ave<<endl;cout<<"tt品德成績"<<p->pinde<<
30、;endl;cout<<"tt老師評分"<<p->teacher<<endl;cout<<"tt綜合成績"<<p->zc<<endl;score_paixu(head);cout<<"tt考試名次"<<p->ksmc<<endl;cout<<"tt綜測名次"<<p->zcmc<<endl;cout<<""<<
31、;endl;cout<<endl;m=1;p= p->next;/繼續(xù)向下尋找if(!m)cout<<"查找不到這個學號的信息!"<<endl;cout<<"按任意鍵返回主菜單"<<endl;getchar();return ;void find_name(struct student *head)/按姓名查找 struct student *p= head;char temp9;int m = 0;cout<<"請輸入要查找的學生的姓名"<<e
32、ndl;cin>>temp;while(p)if(strcmp(p->name,temp) = 0)cout<<"該學生的具體信息為:"<<endl;cout<<endl;cout<<""<<endl;cout<<"學號:"<<p->number<<endl;cout<<"tt姓名:"<<p->name<<endl;cout<<"tt
33、性別:"<<p->sex<<endl;cout<<"tt家庭住址:"<<p->adds<<endl;cout<<"tt聯(lián)系電話:"<<p->phone<<endl;cout<<"ttQQ號:"<<p->qq<<endl;cout<<"tt語文成績:"<<p->chinese<<endl;cout<<
34、"tt數(shù)學成績"<<p->math<<endl;cout<<"tt英語成績"<<p->english<<endl;cout<<"tt平均成績"<<p->ave<<endl;cout<<"tt品德成績"<<p->pinde<<endl;cout<<"tt老師評分"<<p->teacher<<endl;c
35、out<<"tt綜合成績"<<p->zc<<endl;score_paixu(head);cout<<"tt考試名次"<<p->ksmc<<endl;cout<<"tt綜測名次"<<p->zcmc<<endl;cout<<""<<endl;cout<<endl;m=1;p=p->next;if(!m)cout<<"查找不到這個學
36、號的信息!"<<endl;cout<<"按任意鍵返回主菜單"<<endl;getchar();return ;void output()struct student *p,*head;head=Read();p=head;int i=1; while(p) cout<<""<<endl;cout<<"tt學號:"<<p->number<<endl;cout<<"tt姓名:"<<p-
37、>name<<endl;cout<<"tt性別:"<<p->sex<<endl;cout<<"tt家庭住址:"<<p->adds<<endl;cout<<"tt聯(lián)系電話:"<<p->phone<<endl;cout<<"ttQQ號:"<<p->qq<<endl;cout<<"tt語文成績:"<&
38、lt;p->chinese<<endl;cout<<"tt數(shù)學成績:"<<p->math<<endl;cout<<"tt英語成績:"<<p->english<<endl;cout<<"tt品德成績:"<<p->pinde<<endl;cout<<"tt老師評分:"<<p->teacher<<endl;cout<<&quo
39、t;tt平均成績:"<<p->ave<<endl;cout<<"tt綜合成績:"<<p->zc<<endl;score_paixu(head);cout<<"tt考試名次"<<p->ksmc<<endl;cout<<"tt綜合測評名次"<<p->zcmc<<endl;p=p->next;i+; cout<<""<<endl
40、;cout<<endl;cout<<"請按任意鍵返回主菜單"<<endl;getchar();return ;void max_student(struct student *head)struct student *p=head;float c2=0,m2=0,e2=0,s2=0,p2=0,stu2=0,t2=0; double a2=0,zc2=0;while(p)if(p->chinese>c2) c2=p->chinese;if(p->math>m2) m2=p->math;if(p->e
41、nglish>e2) e2=p->english;if(p->chinese+p->math+p->english)>s2) s2=(p->chinese+p->math+p->english);if(p->pinde>p2) p2=p->pinde;if(p->txhp>stu2) stu2=p->txhp;if(p->teacher>t2) t2=p->teacher;if(p->ave>a2)a2=p->ave;if(p->zc>zc2)zc2=p-&
42、gt;zc;p=p->next;cout<<""<<endl;cout<<"tt語文最高分:"<<c2<<endl;cout<<"tt數(shù)學最高分:"<<m2<<endl;cout<<"tt英語最高分:"<<e2<<endl;cout<<"tt總成績最高分:"<<s2<<endl;cout<<"tt品德最
43、高分:"<<p2<<endl;cout<<"tt同學互評分最高:"<<stu2<<endl;cout<<"tt教師評分最高:"<<t2<<endl;cout<<"tt平均分最高:"<<a2<<endl;cout<<"tt綜測最高分:"<<zc2<<endl;cout<<""<<endl;cout&
44、lt;<endl;cout<<"請按任意鍵返回."<<endl;getchar();return;void min_student(struct student *head)struct student *p=head;float c1=100,m1=100,e1=100,s1=100,p1=100,stu1=100,t1=100; double a1=100,zc1=100;while(p) if(p->chinese<c1) c1=p->chinese;if(p->math<m1) m1=p->math;
45、if(p->english<e1) e1=p->english;if(p->chinese+p->math+p->english)<s1) s1=(p->chinese+p->math+p->english);if(p->pinde<p1) p1=p->pinde;if(p->txhp<stu1) stu1=p->txhp;if(p->teacher<t1) t1=p->teacher;if(p->ave<a1)a1=p->ave;if(p->zc<z
46、c1)zc1=p->zc; p=p->next;cout<<""<<endl;cout<<"tt語文最低分:"<<c1<<endl;cout<<"tt數(shù)學最低分:"<<m1<<endl;cout<<"tt英語最低分:"<<e1<<endl;cout<<"tt總成績最低分:"<<s1<<endl;cout<<
47、"tt品德最低分:"<<p1<<endl;cout<<"tt同學互評分最低分:"<<stu1<<endl;cout<<"tt教師評分最低分:"<<t1<<endl;cout<<"tt平均分最低分:"<<a1<<endl;cout<<"tt綜測最低分:"<<zc1<<endl;cout<<""<
48、<endl;cout<<endl;cout<<"請按任意鍵返回."<<endl;getchar();return;void ave_student(struct student *head)struct student *p=head;float c_sum=0,m_sum=0,e_sum=0,p_sum=0,stu_sum=0,t_sum=0;float c_ave=0,m_ave=0,e_ave=0,all_ave=0,p_ave=0,stu_ave=0,t_ave=0;double zc_sum=0,zc_ave=0;whil
49、e(p) c_sum+=p->chinese; m_sum+=p->math; e_sum+=p->english;p_sum+=p->pinde;stu_sum+=p->txhp;t_sum+=p->teacher;zc_sum+=p->zc;p=p->next;c_ave=c_sum/len;m_ave=m_sum/len;e_ave=e_sum/len;all_ave=(c_ave+m_ave+e_ave)/3;p_ave=p_sum/len;stu_ave=stu_sum/len;t_ave=t_sum/len;zc_ave=zc_sum
50、/len;cout<<"tt"<<endl;cout<<"tt語文平均分為:"<<c_ave<<endl;cout<<"tt數(shù)學平均分為:"<<m_ave<<endl;cout<<"tt英語平均分為:"<<e_ave<<endl;cout<<"tt總成績平均為:"<<all_ave<<endl;cout<<"
51、tt品德平均分為:"<<p_ave<<endl;cout<<"tt同學互評平均分為:"<<stu_ave<<endl;cout<<"tt教師評分平均分為:"<<t_ave<<endl;cout<<"tt綜測平均分為:"<<zc_ave<<endl;cout<<"tt"<<endl;cout<<endl;cout<<"請
52、按任意鍵返回."<<endl;getchar();return;void every_student(struct student *head)struct student *p=head;while(p)switch(int)p->ave/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<""<<endl;cout<<"平均成績在90分以上的
53、有:"<<a<<endl;cout<<"平均成績在80分以上的有:"<<b<<endl;cout<<"平均成績在70分以上的有:"<<c<<endl;cout<<"平均成績在60分以上的有:"<<d<<endl;cout<<"平均成績在60分以下的有:"<<e<<endl;while(p)switch(int)p->chinese/1
54、0)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<""<<endl;cout<<"語文成績在90分以上的有:"<<a<<endl;cout<<"語文成績在80分以上的有:"<<b<<endl;cout<<"語文成績在70分以上的有:"<<c&
55、lt;<endl;cout<<"語文成績在60分以上的有:"<<d<<endl;cout<<"語文成績在60分以下的有:"<<e<<endl;while(p)switch(int)p->math/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<""<<endl;cout
56、<<"數(shù)學成績在90分以上的有:"<<a<<endl;cout<<"數(shù)學成績在80分以上的有:"<<b<<endl;cout<<"數(shù)學成績在70分以上的有:"<<c<<endl;cout<<"數(shù)學成績在60分以上的有:"<<d<<endl;cout<<"數(shù)學成績在60分以下的有:"<<e<<endl;while(p)s
57、witch(int)p->english/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<""<<endl;cout<<"英語成績在90分以上的有:"<<a<<endl;cout<<"英語成績在80分以上的有:"<<b<<endl;cout<<"英語成績
58、在70分以上的有:"<<c<<endl;cout<<"英語成績在60分以上的有:"<<d<<endl;cout<<"英語成績在60分以下的有:"<<e<<endl;while(p)switch(int)p->pinde/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<&qu
59、ot;"<<endl;cout<<"品德成績在90分以上的有:"<<a<<endl;cout<<"品德成績在80分以上的有:"<<b<<endl;cout<<"品德成績在70分以上的有:"<<c<<endl;cout<<"品德成績在60分以上的有:"<<d<<endl;cout<<"品德成績在60分以下的有:"<&
60、lt;e<<endl;while(p)switch(int)p->txhp/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<""<<endl;cout<<"同學互評在90分以上的有:"<<a<<endl;cout<<"同學互評在80分以上的有:"<<b<<endl
61、;cout<<"同學互評在70分以上的有:"<<c<<endl;cout<<"同學互評在60分以上的有:"<<d<<endl;cout<<"同學互評在60分以下的有:"<<e<<endl;while(p)switch(int)p->teacher/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p
62、->next;cout<<""<<endl;cout<<"教師評分在90分以上的有:"<<a<<endl;cout<<"教師評分在80分以上的有:"<<b<<endl;cout<<"教師評分在70分以上的有:"<<c<<endl;cout<<"教師評分在60分以上的有:"<<d<<endl;cout<<"
63、;教師評分在60分以下的有:"<<e<<endl;while(p)switch(int)p->zc/10)case 10:case 9:a+;break;case 8:b+;break;case 7:c+;break;case 6:d+;break;default:e+;p=p->next;cout<<""<<endl;cout<<"綜測成績在90分以上的有:"<<a<<endl;cout<<"綜測成績在80分以上的有:&quo
64、t;<<b<<endl;cout<<"綜測成績在70分以上的有:"<<c<<endl;cout<<"綜測成績在60分以上的有:"<<d<<endl;cout<<"綜測成績在60分以下的有:"<<e<<endl;cout<<""<<endl;cout<<"請按任意鍵退出."<<endl;getchar();return;
65、void score_paixu(struct student *head)struct student *p,*p1,*r;p=p1=r=head;int n=0;/學生總數(shù)while(p)/節(jié)點總數(shù)n+;p=p->next;double *ave1=new doublen;double *zc1=new doublen;for(int i=0;i<n;i+)/依次存入每一個學生ave,zcave1i=p1->ave;zc1i=p1->zc;p1=p1->next; for(i=0;i<n;i+)/冒泡排序 for(int j=0;j<n;j+) i
66、f(ave1j<ave1j+1) double ave11=ave1j;ave1j=ave1j+1; ave1j+1=ave11; if(zc1j<zc1j+1) double zc11=zc1j;zc1j=zc1j+1; zc1j+1=zc11; while(r)for(i=0;i<n;i+)if(ave1i=r->ave) r->ksmc=i+1;if(zc1i=r->zc) r->zcmc=i+1;r=r->next;cout<<"排名完成!請按任意鍵返回主菜單的瀏覽學生信息查看!(如果是瀏覽學生信息則按任意鍵得到名次
67、!)"<<endl;delete ave1;delete zc1;getchar();return;/幫助void help()system ("cls");/清屏cout<<" *歡迎使用學生綜合測評系統(tǒng)* "<<endl;cout<<endl;cout<<"本系統(tǒng)可以存儲學生的基本信息和數(shù)據(jù)信息,所有信息按學號以小到大的順序存入文件。"<<endl;cout<<"基本信息包括:學號、姓名、性別、家庭住址、聯(lián)系電話、qq"<<endl;cout<<"數(shù)據(jù)信息包括:語文、數(shù)學、外語三門單科成績、考試平均成績、考試名次、同學互評分、品德成績、任課教師評分、綜合測評分、綜合測評名次"<<endl;cout<<&quo
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年農業(yè)用地的租賃合同模板
- 臨床營養(yǎng)學理論與實踐
- 大醫(yī)精誠演講課件
- 酒店餐飲精細化管理體系構建與實施
- 湖北省重點高中智學聯(lián)盟2024-2025學年高一下學期5月聯(lián)考生物試題
- 2025年河南省平頂山市魯山縣部分中學九年級4月聯(lián)考數(shù)學試卷
- 護理查房互動環(huán)節(jié)設計與實施
- 2025年現(xiàn)場急救知識試題
- 北師大4下一雙手教學設計配課件
- 腹瀉患者健康教育
- 湖南省長沙市芙蓉區(qū)2022-2023學年五年級下學期期末數(shù)學試卷
- 廣東省勞動合同電子版
- 【零件加工中各工序的切削用量與加工內容綜述6100字】
- 中國微光夜視儀行業(yè)發(fā)展趨勢及發(fā)展前景研究報告2024-2029版
- 無人機技術在農業(yè)領域中的應用前景分析
- 危重癥患者體位護理
- 白銀簡介介紹
- 老年急重癥診療及護理
- 人工智能 第2版 課件 AI12類腦智能
- 初中八年級物理課件-《浮力》(全國一等獎)
- 睪丸鞘膜積液的護理查房
評論
0/150
提交評論