版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、 西南交通大学2012年面向对象程序设计试题及答案开发环境为VC+6.0,运行结果有截图,若发现错误欢迎指正。实验一、C+程序开发环境及c+简单程序设计。题目1、简单c+程序任务: 按提示的操作步骤输入下面的代码,编译连接并执行。源程序代码:#include"iostream.h"void main() cout<<"Hello!n" cout<<"Welcome to c+!"<<endl; cout<<"This is my first c+ program"&l
2、t;<endl;运行结果:题目2、编写程序,从标准输入读入一个数,把它转化为英文单词输出,如输入123,这是输出“one two three”。源程序代码:#include<iostream>using namespace std;void main() char ch; cout <<"请输入数字用来转化为英文单词:" while(1) cin>>ch;if(ch='n') break; switch(ch-48) case 0:cout<<"zero " break; case 1
3、:cout <<"one " break; case 2:cout <<"two " break; case 3:cout <<"three "break; case 4:cout <<"four " break; case 5:cout <<"five " break; case 6:cout <<"six " break; case 7:cout <<"seven "b
4、reak; case 8:cout <<"eight "break; case 9:cout <<"nine " break; 运行结果:题目 3、循环结构程序设计任务把一张一元纸币换成一分、二分和五分的硬币,假如每一种至少一枚,文友多少种换法,编程将各种换法显示出来。源程序代码:#include<iostream>using namespace std;void main()int i,j,k,x=0;cout<<"一角 "<<"两角 "<<
5、"三角 "<<endl;for(i=1;i<=93;i+)for(k=1;k<=47;k+)for(j=1;j<=19;j+)if(i+2*k+5*j=100)x+;cout<<i<<" "<<j<<" "<<k<<" "<<endl; cout<<"换法的总数为 :"<<x<<endl;运行结果:(由于种数太多截图不方便所以只截了最后的部分!)实
6、验二、函数题目1、内联函数任务(1) 定义内敛函数max(),求两个整数中的最大值,然后在main()函数中惊醒调用(2) 定义内联函数inline-fun()和一般函数common-fun(),使整型参数值加1,然后在main()函数中惊醒调用;源程序代码:#include<iostream>using namespace std;inline int max(int x,int y);inline int inline_fun(int x);int common_fun(int x);void main()int x=4,y=5;cout<<x<<&qu
7、ot;,"<<y<<"中最大的是 :"<<max(x,y)<<endl;cout<<x<<"加1后为 :"<<inline_fun(x)<<endl;cout<<y<<"加1后为 :"<<common_fun(y)<<endl;inline int max(int x,int y) if(x>y) return x; else return y;inline int inlin
8、e_fun(int x) return +x;int common_fun(int x) return +x;运行结果:题目2、函数参数的传递机制、重载函数任务()编写重载函数max1()可分别求2个整数、3个整数、2个双精度和3双精度数的最大值。(2)定义两个名称都为sum()的函数,第一个函数支持整型数组,第二个函数支持浮点型数组,求数组元素的和。源程序代码:#include<iostream>using namespace std;int max1(int x,int y) if(x>y) return x;else return y;int max1(int x,in
9、t y,int z)if(x>max1(y,z) return x;else return max1(y,z);double max1(double x,double y) if(x>y) return x;else return y;double max1(double x,double y,double z) if(x>max1(y,z) ) return x;else return max1(y,z);int sum(int *p,int n) int i=0,s=0; for(;i<n;i+) s+=pi; return s;double sum(double
10、*p,int n)int i; double s=0;for(i=0;i<n;i+)s+=pi;return s;void main()int a=1,b=2,c=3; double x=4.5, y=6.7, z=8.9;int p5=1,2,3,4,5; double q5=4.5 ,6.7,8.9,2.4,1.2;cout<<a<<","<<b<<"的最大值为 :"<<max1(a,b)<<endl;cout<<a<<","&l
11、t;<b<<","<<c<<"的最大值为 :"<<max1(a,b,c)<<endl;cout<<x<<","<<y<<"的最大值为 :"<<max1(x,y)<<endl;cout<<x<<","<<y<<","<<"的最大值为 :"<<max1(
12、x,y,z)<<endl; cout<<"int 型p数组元素的和为 :"<<sum(p,5)<<endl;cout<<"double 型数组q的元素和为 :"<<sum(q,5)<<endl;运行结果: 题目 3、带默认参数的函数任务 定义函数volume(),计算立体的体积,要求在主函数中以5中不同的形式调用此函数。源程序代码:#include<iostream>using namespace std;double volume(double x=1,do
13、uble y=2,double z=3);void main()double x=4,y=5,c=6;cout<<volume()<<endl;cout<<volume(4)<<endl;cout<<volume(4,5)<<endl;cout<<volume(5,6)<<endl;cout<<volume(4,5,6)<<endl;double volume(double x,double y,double z)/注意这里不可以再带默认的参数!cout<<&qu
14、ot;以"<<x<<","<<y<<","<<z<<"为棱的长方体的体积为 :"return x*y*z;运行结果:实验三、类于对象题目1、私有成员的访问任务下面的程序中用ERROR标明的语句有错误,在不删除和增加代码行的情况下,改正错误的语句,使其正确运行。错误代码及改正方法:#include<iostream>using namespace std;class Aapublic :Aa(int i=0) a=i; cout<<
15、"Constructor"<<a<<endl;Aa() cout<<"Destructor"<<a<<endl;void print() cout<<a<<endl;private :int a;int main()Aa a1(1),a2(2);a1.print();cout<<a2.a<<endl;/ERROR将该行代码中访问了a2的私有属性,改为a2.print();return 0;改正后的运行结果:题目2、构造函数、拷贝构造函数任务(1)
16、调试下列程序源程序代码:#include <iostream>using namespace std;class Topint public:Topint(int x,int y) X=x;Y=y;Topint(Topint &p);Topint () cout<<"destructor is called n"int getx() return X;int gety() return Y;private :int X,Y;Topint:Topint(Topint &p)X=p.X; Y=p.Y;cout<<"C
17、opy -initialization Cnstructor is calledn"int main()Topint p1(4,9);Topint p2(p1);Topint p3=p2;cout<<"p3=("<<p3.getx()<<","<<p3.gety()<<")n"return 0;运行结果:问题:(1) 在该程序中将Topint类的带有两个参数的构造函数进行修改,在函数体内添加下述语句:cout<<"Constructor is
18、Called.n"。对程序的输出结果进行分析和说明。运行结果:第一个Constructor is Called是构造p1时产生的,两个Copy-initialization Constructor is Called分别hi构造p2 和p3 时 产生的。析构p3、p2、p1,是产生了三个destructor is called。(2) 对上述程序在主函数中添加下列说明语句:Topint p4,p5(2)调试程序会出现什么现象,为什么?如何解决?结合运行结果分析如何使用不同的构造函数创建把不同的对象?对程序的输出结果进行分析和说明。会出现对象p4,p5 无法构造。在类中将构造函数Top
19、int(int x,int y);改成带有默认参数的构造函数,例如:Topint(int x=0,int y =0);运行结果:分析同上。题目3、析构函数、new和delete运算符任务 定义字符串类,包括私有数据成员(char *ch),构造函数中用new为ch申请空间,析构函数用delete释放空间,并验证构造函数和析构函数的调用书顺序。源程序代码:#include<iostream>using namespace std;class Stringprivate :char *ch;int n;public :String(int n=0) this->n=n; ch=n
20、ew charn; cout<<"构造函数被调用!"<<n<<endl; void set() cout<<"请输入"<<n<<"字符用来构造字符串。"<<endl; for(int i=0;i<n;i+) cin>>chi; void show() cout<<"字符串的储存的内容如下:"<<endl;for(int i=0;i<n;i+) cout<<chi; cout
21、<<endl;String() cout<<"析构函数被调用!"<<n<<endl; delete ch; ;void main() int n1,n2; cout<<"请分别输入你所要建立的两个字符串的含有字符的个数 :"<<endl; cin>>n1>>n2;String s1(n1),s2(n2);s1.set();s2.set();s1.show();s2.show();运行结果:可以看出构造函数和析构函数的调用的顺序相反!注意:特别重视构造函数、拷贝
22、构造函数和析构函数的使用以及调用顺序,这在整个面向对象程序设计中一直是重点同时也一直是难点。实验四、静态成员与友元题目1、静态成员的特性任务(1) 调试下列程序,写出输出的结果,并分析输出结果。程序代码: #include<iostream>using namespace std;class Mypublic :My(int aa) A=aa;B-=aa;static void fun(My m);private :int A;static int B;void My:fun(My m)/这里的静态函数在类外实现时就无需在家static关键字。cout<<"A
23、="<<m.A<<endl;cout<<"B="<<B<<endl;int My:B=100;/静态的数据成员要在类外进行初始化,并且初始化时无需加关键字限定。int main()My P(6),Q(8);My:fun(P);/静态函数的调用形式。 Q.fun(Q);return 0;运行结果:可以看出,static的数据成员是不属于任何的对象的而属于整个类。Static函同样是属于整个类可以用类名加作用域标识符进行调用,也可以用对象进行调用,两种形式的调用效果等价。题目2、友元函数任务 分析并调试程序,
24、完成下列问题程序代码:#include<iostream>#include<cmath>using namespace std;class Mypublic:My (double i=0) x=y=i;My(double i,double j) x=i;y=j;My (My &m) x=m.x;y=m.y;friend double dist(My &a,My &b);private :double x,y;double dist (My &a,My &b)double dx=a.x-b.y;double dy=a.y-b.y;r
25、eturn sqrt(dx*dx+dy*dy);int main()My m1,m2(15),m3(13,14);My m4(m3);cout<<"The distancel :"<<dist(m1,m3)<<endl;cout<<"The distance2 :"<<dist(m2,m3)<<endl;cout<<"The distance3 :"<<dist(m3,m4)<<endl;cout<<"Th
26、e distance4 :"<<dist(m1,m2)<<endl;return 0;运行结果:思考:(1) 指出所有的构造函数,它们在本程序中分别起什么作用?My (double i=0);My(double i,double j) ;My (My &m) ;第一个实现单参和带有一个默认参数构造,第二个实现双参构造;第三个事拷贝构造函数。(实际上前两个可以合并为一个My(double i=0;double j);). (2)指出设置默认参数的构造函数。(前面已回答) (3)指出友元函数。将友元函数放到私有部分,观察结果是否有变化。 友元函数为:dou
27、ble dist(My &a,My &b);放到私有部分是没有变化的。 (4)写出结果并分析结果。(结果已给出)题目3、静态成员的应用任务定义一个Student类,在该类中定义包括一个数据成员score()(分数)、两个静态数据成员total(总分)和学生人数count;成员函数scoretotalcount(float s)用于设置分数、求总分和累加学生人数;静态成员函数sum()用于计算总分;静态成员函数average()用于计算平均值。在main(0函数中输入学生成绩,并调用上述函数求出全班学生的总分和平均分。源程序代码:#include<iostream>u
28、sing namespace std;class Studentprivate :double score; static double total;static int count;public :Student() count+;void scoretotalcount() cin>>score;total+=score; double gets() return score; static void sum() cout<<"这个班的学生该课程的总分为 :"<<total<<endl;static void averag
29、e() cout<<"这个班的学生该课程的平均分为 :"<<total/count<<endl;double Student:total=0;int Student:count=0;void main()Student s10;cout<<"请输入10个学生的成绩 :"for(int i=0;i<10;i+)si.scoretotalcount();cout<<"这10个学生的成绩为 :" for(i=0;i<10;i+) cout<<si.gets(
30、)<<ends; cout<<endl; Student:sum(); Student:average();运行结果:题目4、友元函数的应用任务 声明Book和Ruler两个类,二者都有weight属性,定义二者的一个友元函数totalweight(),计算二者的重量和。源程序代码:#include<iostream>using namespace std;class Book;class Rulerprivate :double weight;public :Ruler(double x=0) :weight(x) void set() cout<&
31、lt;"请输入你在Ruler类中所要设置weight的值 :" cin>>weight;void show() cout<<"weight ="<<weight<<endl;friend void totalweight(Book &a,Ruler &b);class Bookprivate :double weight;public :Book(double x=0) :weight(x) void set() cout<<"请输入你在Book类所要设置weight的
32、值 :" cin>>weight;void show() cout<<"weight ="<<weight<<endl;friend void totalweight(Book &a,Ruler &b);void totalweight(Book &a,Ruler &b)cout<<"二者的重量之和为 :"<<a.weight+b.weight<<endl;void main()Book b;Ruler r;b.set();b.s
33、how();r.set();r.show();totalweight(b,r);这里子两个类中属性比较单一,主要是为使用友元函数,如果需要可以添加其他属性。运行结果:实验五、继承与派生题目1、单继承任务 调试下列程序,并对程序进行修改,指出程序中错误的原因。程序代码:#include<iostream>using namespace std;class Apublic :void seta(int i) a=i;int geta() return a;public :int a;class B :public Apublic :void setb(int i) b=i;int ge
34、tb() return b;void show() cout<<"A:a="<<a<<endl;public :int b;int main()B bb;/语句1bb.seta(6);/语句2bb.setb(3);/语句3bb.show();cout<<"A:a="<<bb.a<<endl;cout<<"B:b="<<bb.b<<endl;cout<<"A:a="<<bb.geta()
35、<<endl;cout<<"B:a="<<bb.getb()<<endl;return 0;运行结果:问题(1) 、将派生类B的继承方式改为private,会出现那些错误和不正常的现象?为什么?在main()函数中直接使用用A类的属性将是不可以的,因为继承方式是private所以其属性将不可以直接被调用!(2) 将派生类的继承方式改为protected,会出现哪些错误和不正常的现象?为什么?同(1)支部过集成的方式改为protected。(3) 将派生类B的继承方式恢复为public后,再将类A的数据成员int型的变量a的访问
36、权限改为private时,会出现哪些错误和不正常的现象?为什么?将会出现在B类和main函数中是用数据a是不可以的,一维在A类中a是属性为private。(4) 派生类B的继承方式仍为public,再将类A中的数据成员int型的变量a的访问权限该为 protected,会出现哪些错误和不正常的现象?为什么?更改后数据a在B类中是可以使用,但在main函数仍是不可以被使用的,因为继承方式是protected!题目2、利用继承与派生类来管理学生和教师的档案任务假设要管理下述基类人员的如下的数据Teacher(教师):姓名、性别、年龄、职称、教授课程;Student(学生): 姓名、性别、年龄、学号
37、、专业;Graduate():姓名、性别、年龄、学号、专业、导师;源程序代码:#include<iostream>#include<string>using namespace std;class Personprivate :string xm,xb;int age;public :Person(string na,string sex,int a) :xm(na),xb(sex),age(a)void show() cout<<" 姓名 :"<<xm<<" 性别 :"<<xb&l
38、t;<" 年龄 :"<<age;class Teacher :public Personprivate :string zc,kc;public :Teacher(string na,string sex,int a,string z,string k):Person(na,sex,a),zc(z),kc(k)void show() Person:show(); cout<<" 职称 :"<<zc<<" 教授课程 :"<<kc<<endl;class Stu
39、dent :public Personprivate :string xh,sb;public :Student(string na,string sex,int a,string x,string s):Person(na,sex,a),xh(x),sb(s)void show() Person:show(); cout<<" 学号 :"<<xh<<" 专业 :"<<sb;class Graduate :public Student private :string ds;public :Graduate(
40、string na,string sex,int a,string x,string s,string d):Student(na,sex,a,x,s),ds(d)void show() Student:show();cout<<"导师 :"<<ds<<endl;void main()Teacher t("张三","男",45,"教授","面向对象程序设计");Student s("李四","男",20,"20
41、1100001","计算机科学与技术");Graduate g("李红","女",24,"200800001","计算机科学与技术","张三"); t.show(); s.show();cout<<endl; g.show();运行结果:题目3、教师干部类定义Person(人)类,由Person分别派生Teacher(教师)类和Cader(干部)类,再有Teacher(教师)类和Caderl类采用多重继承的方式派生出TeacherCader(教师兼干部)
42、类。源程序代码:#include<iostream>#include<string>using namespace std;class Personprivate :string xm,xb;int age;public :Person(string na,string sex,int a) :xm(na),xb(sex),age(a)void show() cout<<" 姓名 :"<<xm<<" 性别 :"<<xb<<" 年龄 :"<<
43、age;class Teacher :virtual public Personprivate :string zc;public :Teacher(string na,string sex,int a,string z):Person(na,sex,a),zc(z)void show1() Person:show(); cout<<" 职称 :"<<zc;void show()cout<<" 职称 :"<<zc;class Cader : virtual public Personprivate :str
44、ing post;public :Cader(string na,string sex,int a,string p):Person(na,sex,a),post(p)void show1() Person:show(); cout<<" 职务:"<<post;void show() cout<<" 职务:"<<post;class TeacherCader :public Teacher,public Caderprivate:double wages;public :TeacherCader(strin
45、g na,string sex,int a,string z,string p,double w):Person(na,sex,a),Teacher(na,sex,a,z),Cader(na,sex,a,p),wages(w)void show() Person:show(); Teacher:show();Cader:show(); cout<<" 工资:"<<wages<<endl;void main()Teacher t("张三","男",45,"教授");Cader c(
46、"李四","男",55,"校长"); TeacherCader tc("王五","女",45,"教授","院长",10000);t.show1();cout<<endl;c.show1();cout<<endl;tc.show();运行结果:实验六、虚函数与多态题目1、动态联编和静态联编任务分析并调试下列程序程序代码:#include<iostream>using namespace std;class Basepubl
47、ic :virtual void f(float x) cout<<"Base:f(float)"<<x<<endl;void g(float x) cout<<"Base:g(float)"<<x<<endl;void h(float x) cout<<"Base:h(float)"<<x<<endl;class Derived :public Basepublic :virtual void f(float x) cout&
48、lt;<"Derived:f(float)"<<x<<endl;void g(int x) cout<<"Derived:g(int)"<<x<<endl;void h(float x) cout<<"Derived :h(float)"<<x<<endl;int main()Derived d;Base *pb=&d;Derived *pd=&d;pb->f(3.14f);pd->f(3.14f);pb-
49、>g(3.14f);pd->h(3.14f);pd->h(3.14f);return 0;运行结果:问题:(1) 找出以上程序张是使用了重载和覆盖的函数。覆盖的有virtual void f(float x);和void h(float x);重载的有void g(int x)和void g(float x) ; (2)写出程序的输出结果,并解释结果。结果已截图解释省去。题目2、动态联编和静态联编任务分析并调试下列程序:#include<iostream>using namespace std;const double PI=3.1415;class Sharpp
50、ublic :virtual double Area()=0;class Triangle :public Sharppublic :Triangle (double h,double w) H=h;W=w;double Area() return 0.5*W*H;private:double H,W;class Rectangle :public Sharppublic :Rectangle (double h,double w) H=h;W=w; double Area() return H*W;private :double H,W;class Cricle :public Sharpp
51、ublic :Cricle(double r) R=r;double Area() return PI*R*R;private :double R;class Squre :public Sharppublic :Squre(double s) S=s;double Area() return S*S;private :double S;double Total (Sharp *s,int n)double sum=0;for(int i=0;i<n;i+)sum=sum +si->Area();return sum;int main()Sharp *s5;s0=new Squre
52、(4.0);s1=new Rectangle(2.0,4.0);s2=new Squre(8.0);s3=new Cricle(2.0);s4 =new Triangle(4.0,8.0);double sum=Total(s,5);cout<<"SUM="<<sum<<endl;return 0;运行结果:问题(1) 指出抽象类;Sharp(2) 指出纯虚函数,并说明它的作用。Double Area()=0是抽象类,作用是为同类的函数日工同意的外部接口。 (3)每个类的作用是什么,正程序的作用是什么?读者可以通过读程序就会明白该程序的作
53、用和每个类的作用,所以就不在这里做过多的解释。题目3.图形类的设计任务 定义抽象类Shape;Class Shape Public : virtual double Area()=0;/任意图形的面积 virtual double Volume()=0;/任意图形的体积;要求(1) 定义派生类CIrcle(圆)、Rectangle(矩形),并实现相应的纯虚函数。(2) 定义CAR,使得到通过CAR一如下方式统一操作Circle和Rectangle图形。 class CARprivate: Shape &shape;public:CAR (Shape &s):shape(s);
54、double Area() return shape.Area(); double Volume() return shape.Volume();源程序代码:#include<iostream>using namespace std;const double PI=3.1415;class Shapepublic :virtual double Area()=0; virtual double Volume()=0;class Triangle :public Shapepublic :Triangle (double h,double w) H=h;W=w;double Area
55、() return 0.5*W*H; double Volume()return 0.0;/注意着里即使不用Volume()属性也要对其进行一定函数实现。private:double H,W;class Rectangle :public Shapepublic :Rectangle (double h,double w) H=h;W=w; double Area() return H*W; double Volume()return 0.0;private :double H,W;class Cricle :public Shapepublic :Cricle(double r) R=r;d
56、ouble Area() return PI*R*R; double Volume()return 0.0;private :double R;class Squre :public Shapepublic :Squre(double s) S=s;double Area() return S*S; double Volume()return 0.0;private :double S;class FT :public Shape public : double Volume()return H*W*G; double Area() return 0.0;FT(double h,double
57、w,double g) H=h;W=w;G=g;private:double W ,H,G;class CARprivate: Shape &shape;public:CAR (Shape &s):shape(s); double Area() return shape.Area(); double Volume() return shape.Volume();void main()Cricle a(5.0); Rectangle c(10.0,5.0);FT b(10.0,8.0,9.0);CAR A(a),C(c),B(b);cout<<"圆A的面积为
58、 :"<<A.Area()<<endl; cout<<"球B的体积为 :"<<B.Volume()<<endl;cout<<"矩形C的面积为 :"<<C.Area()<<endl;运行结果:题目4、运算符重载任务 定义一个Time用来保存时间(时、分、秒),通过重载操作符“+”实现两个时间的相加。要求 定义一个Time类,包括3个数据成员:hours(时)、minutes(分)、second(秒),另外两个构造函数,时间相加运算符“+”重载函数输出函
59、数gettime().源程序代码:#include<iostream>#include<iomanip>using namespace std;class Timeprivate :int h,m,s;public :Time (int h=0,int m=0,int s=0) this->h=h;this->m=m;this->s=s;Time(Time &t) h=t.h;m=t.m;s=t.s;void operator +(Time &t) h+=t.h;m+=t.m;s+=t.s;void gettime() cout<
60、<"现在时间为 :"cout.fill('0'); cout<<setw(2)<<h<<":"<<setw(2)<<m<<":"<<setw(2)<<s<<endl;void main()Time t1(5,5,5),t2(10,10,10);t1.gettime();t2.gettime(); t1+t2;t1.gettime();运行结果:实验7、模板与STL库题目1、函数模板任务 编写一个函数模板实现
61、n个数据的最小值,具体要求为:能求不同的数据类型的最小值,n个数据由键盘输入。可以用int、float、double等类型的参数,并在main函数进行测试。源程序代码:#include <iostream>using namespace std;template <class T>T min(T *a,int n)T k=a0;for(int i=0;i<n;i+)if(ai<k) k=ai;return k;void main()int n;cout<<"请输入n的值:" cin>>n;int *p=new in
62、tn;double *q=new doublen;cout<<"请输入"<<n<<"个整型的数 :"for(int i=0;i<n;i+) cin>>pi;cout<<"请输入"<<n<<"个双精度的数 :"for(i=0;i<n;i+) cin>>qi;cout<<endl<<n<<"个整型数中最小的是 :"<<min(p,n)<&l
63、t;endl;cout<<n<<"个双精度数最小的是 :"<<min(q,n)<<endl;delete p; delete q; 运行结果:题目 2、类模板任务 编写一个使用类模板对数组经型排序、查找和求元素的和的程序,并才用相关的数据进行测试。源程序代码:#include<iostream>#include<cstdlib>using namespace std;template <class T> class szprivate :T *a;int n;public :sz(int nn) :n(nn)void set(T *p) a=p ; cout<<&quo
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 洗浴中心员工考勤制度
- 消毒供应中心考勤制度
- 煤矿队部考勤制度范本
- 环卫公司考勤制度及奖罚制度
- 生鲜电商采购部考勤制度
- 疫情防控专班考勤制度
- 石家庄托班考勤制度规定
- 社区职工考勤制度汇编
- 第三方外出检测考勤制度
- 绩效考勤制度及实施细则
- 医院后勤服务PDCA质量提升路径
- 疼痛护理中的康复与物理治疗
- 意大利雇佣白皮书-万领均
- 中标广西哲社课题申报书
- 2026年郑州铁路职业技术学院单招职业适应性考试题库附答案解析
- 掩体构筑与伪装课件
- 2025年长沙卫生职业学院单招职业适应性测试题库附答案
- 2026年安全员-B证考试题及答案(1000题)
- 2026中央机关遴选和选调公务员(公共基础知识)综合能力测试题带答案解析
- 医疗机构纠纷预防培训的分层培训方案
- 2026届高三化学二轮复习+综合实验突破
评论
0/150
提交评论